isle/LEGO1/mxautolocker.h

16 lines
244 B
C
Raw Normal View History

2023-06-23 12:17:41 -04:00
#ifndef MXAUTOLOCKER_H
#define MXAUTOLOCKER_H
#include "mxcriticalsection.h"
class MxAutoLocker
{
public:
MxAutoLocker(MxCriticalSection* cs);
~MxAutoLocker();
private:
MxCriticalSection* m_criticalSection;
2023-06-23 12:17:41 -04:00
};
#endif // MXAUTOLOCKER_H