isle/LEGO1/mxautolocker.h

16 lines
254 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);
2023-06-26 12:48:19 -04:00
~MxAutoLocker();
2023-06-23 12:17:41 -04:00
private:
MxCriticalSection* m_criticalSection;
};
#endif // MXAUTOLOCKER_H