summaryrefslogtreecommitdiff
path: root/osframework/source/SexyAppFramework/CritSect.h
blob: d6e7100e93be37113080d54978eff685892351e8 (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
#ifndef _H_CritSect
#define _H_CritSect

#include "Common.h"

class CritSync;

namespace Sexy
{

class CritSect 
{
private:
	CRITICAL_SECTION mCriticalSection;
	friend class AutoCrit;

public:
	CritSect(void);
	~CritSect(void);
};

}

#endif // _H_CritSect