tahoma2d/toonz/sources/include/xscopedlock.h

17 lines
170 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef XSCOPEDLOCK_H
#define XSCOPEDLOCK_H
2016-06-15 18:43:10 +12:00
class XScopedLock {
2016-03-19 06:57:51 +13:00
private:
2016-06-15 18:43:10 +12:00
class Imp;
Imp *m_imp;
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
XScopedLock();
~XScopedLock();
2016-03-19 06:57:51 +13:00
};
#endif