blob: c03bfcd4e95479dd6ae7744ef64ab8bf2a05ba54 (
plain)
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
|
#ifndef ClientDOMSerializerWrapperImpl_h__
#define ClientDOMSerializerWrapperImpl_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.
// =================================================================================================
#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/ImplHeaders/DOMSerializerImpl.h"
#if XMP_WinBuild
#pragma warning( push )
#pragma warning( disable : 4250 )
#endif
namespace AdobeXMPCore_Int {
class ClientDOMSerializerWrapperImpl
: public virtual DOMSerializerImpl
{
public:
ClientDOMSerializerWrapperImpl( pIClientDOMSerializer serializer );
virtual spIUTF8String APICALL Serialize( const spINode & node, const spcINameSpacePrefixMap & map );
virtual eConfigurableErrorCode APICALL ValidateValue( const uint64 & key, eDataType type, const CombinedDataValue & value ) const;
spIUTF8String APICALL SerializeInternal(const spINode & node, XMP_OptionBits options, sizet padding, const char * newline, const char * indent, sizet baseIndent, const spcINameSpacePrefixMap & nameSpacePrefixMap) const;
protected:
virtual ~ClientDOMSerializerWrapperImpl() __NOTHROW__ ;
virtual DOMSerializerImpl * APICALL clone() const;
pIClientDOMSerializer mpSerializer;
};
}
#if XMP_WinBuild
#pragma warning( pop )
#endif
#endif // ClientDOMSerializerWrapperImpl_h__
|