blob: 1094a889acfe846439b6ac69af7bd6b09eb410a2 (
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
|
#ifndef __SharedObjectImpl_h__
#define __SharedObjectImpl_h__ 1
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2014 Adobe Systems Incorporated
// 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.
// =================================================================================================
#include "XMPCommon/Interfaces/BaseInterfaces/ISharedObject.h"
#include "XMPCommon/Interfaces/BaseInterfaces/ISharedObject_I.h"
#include "XMPCommon/Utilities/TAtomicTypes.h"
namespace XMP_COMPONENT_INT_NAMESPACE {
class SharedObjectImpl
: public virtual ISharedObject_I
{
public:
SharedObjectImpl()
: mRefCount( 0 )
, mCountInternal( 0 ) { }
virtual void APICALL Acquire() const __NOTHROW__;
virtual void APICALL Release() const __NOTHROW__;
virtual void APICALL AcquireInternal() const __NOTHROW__;
protected:
SharedObjectImpl( const SharedObjectImpl & );
SharedObjectImpl & operator = ( const SharedObjectImpl & );
virtual ~SharedObjectImpl() __NOTHROW__;
protected:
mutable atomic_sizet mRefCount;
mutable atomic_sizet mCountInternal;
#ifndef FRIEND_CLASS_DECLARATION
#define FRIEND_CLASS_DECLARATION()
#endif
FRIEND_CLASS_DECLARATION();
REQ_FRIEND_CLASS_DECLARATION();
};
}
#endif // __SharedObjectImpl_h__
|