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
|
#ifndef MetadataImpl_h__
#define MetadataImpl_h__ 1
// =================================================================================================
// Copyright Adobe
// Copyright 2014 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. If you have received this file from a source other
// than Adobe, then your use, modification, or distribution of it requires the prior written permission
// of Adobe.
// =================================================================================================
#if !(IMPLEMENTATION_HEADERS_CAN_BE_INCLUDED)
#error "Not adhering to design constraints"
// this file should only be included from its own cpp file
#endif
#include "XMPCore/Interfaces/IMetadata_I.h"
#include "XMPCore/ImplHeaders/StructureNodeImpl.h"
#if XMP_WinBuild
#pragma warning( push )
#pragma warning( disable : 4250 )
#endif
namespace AdobeXMPCore_Int {
class MetadataImpl
: public virtual IMetadata_I
, public virtual StructureNodeImpl
{
public:
MetadataImpl();
protected:
virtual ~MetadataImpl() __NOTHROW__ {}
virtual spcIUTF8String APICALL GetAboutURI() const;
virtual void APICALL SetAboutURI( const char * uri, sizet uriLength ) __NOTHROW__;
virtual spcIUTF8String APICALL GetName() const;
virtual spcIUTF8String APICALL GetNameSpace() const;
virtual spINode APICALL GetParent();
virtual eNodeType APICALL GetParentNodeType() const;
virtual void APICALL SetName( const char * name, sizet nameLength );
virtual void APICALL SetNameSpace( const char * nameSpace, sizet nameSpaceLength );
virtual void APICALL ClearContents();
virtual spINode APICALL CloneContents( bool ignoreEmptyNodes, bool ignoreNodesWithOnlyQualifiers, sizet qualifiersCount ) const;
virtual spIMetadata APICALL ConvertToMetadata();
virtual void APICALL EnableFeature( const char * key, sizet keyLength ) const __NOTHROW__;
virtual void APICALL DisableFeature( const char * key, sizet keyLength ) const __NOTHROW__;
using IMetadata_I::GetNode;
using IMetadata_I::RemoveNode;
virtual spINode APICALL GetNode( const spcIUTF8String & nameSpace, const spcIUTF8String & name );
virtual spINode APICALL RemoveNode( const spcIUTF8String & nameSpace, const spcIUTF8String & name );
virtual void APICALL InsertNode( const spINode & node );
virtual spINode APICALL ReplaceNode( const spINode & node );
spIUTF8String mAboutURI;
mutable bool mSupportAliases;
#ifdef FRIEND_CLASS_DECLARATION
FRIEND_CLASS_DECLARATION();
#endif
REQ_FRIEND_CLASS_DECLARATION();
};
}
#if XMP_WinBuild
#pragma warning( pop )
#endif
#if !(IMPLEMENTATION_HEADERS_CAN_BE_INCLUDED)
#error "Not adhering to design constraints"
// this file should only be included from its own cpp file
#endif
#endif // MetadataImpl_h__
|