forked from metin2/server
1
0
Fork 0
server/common/noncopyable.h

16 lines
277 B
C
Raw Normal View History

2022-03-05 12:44:06 +02:00
#ifndef INC_METIN_II_COMMON_NONCOPYABLE_TEMPLATE
#define INC_METIN_II_COMMON_NONCOPYABLE_TEMPLATE
class noncopyable
{
protected:
noncopyable() {}
~noncopyable() {}
private:
noncopyable(const noncopyable &);
noncopyable& operator = (const noncopyable &);
};
#endif