mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-22 16:04:17 +00:00
lego1: implement MxTimer + dependencies
This commit is contained in:
15
LEGO1/mxautolocker.h
Normal file
15
LEGO1/mxautolocker.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef MXAUTOLOCKER_H
|
||||
#define MXAUTOLOCKER_H
|
||||
|
||||
#include "mxcriticalsection.h"
|
||||
|
||||
class MxAutoLocker
|
||||
{
|
||||
public:
|
||||
MxAutoLocker(MxCriticalSection* cs);
|
||||
virtual ~MxAutoLocker();
|
||||
private:
|
||||
MxCriticalSection* m_criticalSection;
|
||||
};
|
||||
|
||||
#endif // MXAUTOLOCKER_H
|
Reference in New Issue
Block a user