vcglib/wrap/system/multithreading/base.h

19 lines
278 B
C
Raw Normal View History

2011-12-09 17:06:08 +01:00
#ifndef MT_BASE_H
#define MT_BASE_H
#include <assert.h>
#define MT_PREVENT_COPY(CLASS_NAME) \
private: \
CLASS_NAME (const CLASS_NAME &); \
CLASS_NAME & operator = (const CLASS_NAME &);
#define MT_ASSERT assert
namespace mt
{
}
#endif // MT_BASE_H