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
|
#ifndef IConfigurationManager_I_h__
#define IConfigurationManager_I_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.
// =================================================================================================
#include "XMPCommon/XMPCommonFwdDeclarations_I.h"
#include "XMPCommon/Interfaces/IConfigurationManager.h"
#include "XMPCommon/Interfaces/BaseInterfaces/ISharedObject_I.h"
namespace XMP_COMPONENT_INT_NAMESPACE {
//!
//! \brief Internal interface that represents configuration settings controllable by the client.
//! \details Provides functions through which client can plug in its own memory allocators, error notifiers.
//! \attention Not Thread Safe as this functionality is generally used at the initialization phase.
//!
#if XMP_WinBuild
#pragma warning( push )
#pragma warning( disable : 4250 )
#endif
class IConfigurationManager_I
: public virtual IConfigurationManager
, public virtual ISharedObject_I
{
public:
//!
//! return the version of the interface.
//! \return 32 bit unsigned integer representing the version of the interface.
//!
static uint32 GetInterfaceVersion() { return kInternalInterfaceVersionNumber; }
virtual pIConfigurationManager APICALL GetActualIConfigurationManager() __NOTHROW__ { return this; }
virtual pvoid APICALL GetInterfacePointer( uint64 interfaceID, uint32 interfaceVersion );
virtual ~IConfigurationManager_I() __NOTHROW__{}
protected:
virtual uint32 APICALL registerMemoryAllocator( pIMemoryAllocator_base memoryAllocator, pcIError_base & error ) __NOTHROW__;
virtual uint32 APICALL registerErrorNotifier( pIErrorNotifier_base clientErrorNotifier, pcIError_base & error ) __NOTHROW__;
virtual uint32 APICALL disableMultiThreading( pcIError_base & error ) __NOTHROW__;
virtual uint32 APICALL isMultiThreaded( pcIError_base & error ) const __NOTHROW__;
virtual pvoid APICALL getInterfacePointer( uint64 interfaceID, uint32 interfaceVersion, pcIError_base & error ) __NOTHROW__;
pvoid APICALL GetInterfacePointerInternal( uint64 interfaceID, uint32 interfaceVersion, bool isTopLevel );
#ifdef FRIEND_CLASS_DECLARATION
REQ_FRIEND_CLASS_DECLARATION();
#endif
REQ_FRIEND_CLASS_DECLARATION();
};
#if XMP_WinBuild
#pragma warning( pop )
#endif
}
#endif // IConfigurationManager_I_h__
|