tahoma2d/toonz/sources/include/xscopedlock.h

18 lines
154 B
C
Raw Normal View History

2016-03-19 06:57:51 +13:00
#ifndef XSCOPEDLOCK_H
#define XSCOPEDLOCK_H
class XScopedLock
{
private:
class Imp;
Imp *m_imp;
public:
XScopedLock();
~XScopedLock();
};
#endif