You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
909 B
33 lines
909 B
#ifndef DYNAMIC_DEPTH_INCLUDES_XMPMETA_XMP_CONST_H_ // NOLINT
|
|
#define DYNAMIC_DEPTH_INCLUDES_XMPMETA_XMP_CONST_H_ // NOLINT
|
|
|
|
namespace dynamic_depth {
|
|
namespace xmpmeta {
|
|
|
|
// Constants used in writing XMP metadata.
|
|
struct XmpConst {
|
|
// XMP namespaces.
|
|
static const char* Namespace();
|
|
static const char* NamespacePrefix();
|
|
static const char* NodeName();
|
|
static const char* AdobePropName();
|
|
static const char* AdobePropValue();
|
|
static const char* NoteNamespace();
|
|
|
|
// XMP headers.
|
|
static const char* Header();
|
|
static const char* ExtensionHeader();
|
|
static const char* HasExtensionPrefix();
|
|
static const char* HasExtension();
|
|
|
|
// Sizes.
|
|
static const int ExtensionHeaderOffset();
|
|
static const int MaxBufferSize();
|
|
static const int ExtendedMaxBufferSize();
|
|
};
|
|
|
|
} // namespace xmpmeta
|
|
} // namespace dynamic_depth
|
|
|
|
#endif // DYNAMIC_DEPTH_INCLUDES_XMPMETA_XMP_CONST_H_ // NOLINT
|