1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
#ifndef XMPCoreLatestInterfaceVersions_h__
#define XMPCoreLatestInterfaceVersions_h__ 1
// =================================================================================================
// Copyright Adobe
// Copyright 2015 Adobe
// All Rights Reserved
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
//!
//! @brief Macro to include a client file through with client can control the interface versions he wants to stick with
//! if not the latest ones.
//!
#if !SOURCE_COMPILING_XMPCORE_LIB
#ifdef XMPCORE_CLIENT_VERSION_NUMBER_FILE
#include QUOTEME(XMPCORE_CLIENT_VERSION_NUMBER_FILE)
#endif
#endif
#ifndef INAMESPACEPREFIXMAP_VERSION
#define INAMESPACEPREFIXMAP_VERSION 1
#endif
#ifndef IPATHSEGMENT_VERSION
#define IPATHSEGMENT_VERSION 1
#endif
#ifndef IPATH_VERSION
#define IPATH_VERSION 1
#endif
#ifndef INODE_VERSION
#define INODE_VERSION 1
#endif
#ifndef INODEITERATOR_VERSION
#define INODEITERATOR_VERSION 1
#endif
#ifndef ISIMPLENODE_VERSION
#define ISIMPLENODE_VERSION 1
#endif
#ifndef ICOMPOSITENODE_VERSION
#define ICOMPOSITENODE_VERSION 1
#endif
#ifndef ISTRUCTURENODE_VERSION
#define ISTRUCTURENODE_VERSION 1
#endif
#ifndef IARRAYNODE_VERSION
#define IARRAYNODE_VERSION 1
#endif
#ifndef IMETADATA_VERSION
#define IMETADATA_VERSION 1
#endif
#ifndef ICLIENTDOMPARSER_VERSION
#define ICLIENTDOMPARSER_VERSION 1
#endif
#ifndef ICLIENTDOMSERIALIZER_VERSION
#define ICLIENTDOMSERIALIZER_VERSION 1
#endif
#ifndef IDOMPARSER_VERSION
#define IDOMPARSER_VERSION 1
#endif
#ifndef IDOMSERIALIZER_VERSION
#define IDOMSERIALIZER_VERSION 1
#endif
#ifndef IDOMIMPLEMENTATIONREGISTRY_VERSION
#define IDOMIMPLEMENTATIONREGISTRY_VERSION 1
#endif
#ifndef ICOREOBJECTFACTORY_VERSION
#define ICOREOBJECTFACTORY_VERSION 1
#endif
#ifndef ICORECONFIGURATIONMANAGER_VERSION
#define ICORECONFIGURATIONMANAGER_VERSION 1
#endif
#ifndef IMETADATACONVERTERUTILS_VERSION
#define IMETADATACONVERTERUTILS_VERSION 1
#endif
#endif // XMPCoreLatestInterfaceVersions_h__
|