summaryrefslogtreecommitdiff
path: root/XMPCommon/ImplHeaders/SharedMutexImpl.h
blob: 6fea852f0e72fbf036256360287262a51d235266 (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
51
52
#ifndef __SharedMutexImpl_h__
#define __SharedMutexImpl_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.
// =================================================================================================

#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 "XMPCommon/Interfaces/ISharedMutex.h"
#include "XMPCommon/BaseClasses/MemoryManagedObject.h"
#include "XMPCommon/ImplHeaders/SharedObjectImpl.h"

#if XMP_WinBuild
	#pragma warning( push )
	#pragma warning( disable : 4250 )
#endif

namespace XMP_COMPONENT_INT_NAMESPACE {

	class SharedMutexImpl
		: public virtual ISharedMutex
		, public virtual SharedObjectImpl
		, public virtual MemoryManagedObject
	{
	public:
		virtual eMultiThreadingErrorCode APICALL Lock() __NOTHROW__;
		virtual eMultiThreadingErrorCode APICALL TryLock() __NOTHROW__;
		virtual eMultiThreadingErrorCode APICALL Unlock() __NOTHROW__;

		virtual eMultiThreadingErrorCode APICALL LockShared() __NOTHROW__;
		virtual eMultiThreadingErrorCode APICALL TryLockShared() __NOTHROW__;
		virtual eMultiThreadingErrorCode APICALL UnlockShared() __NOTHROW__;

		virtual ~SharedMutexImpl() __NOTHROW__ { }
	};

}

#if XMP_WinBuild
	#pragma warning( pop )
#endif

#endif  // __SharedMutexImpl_h__