You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
247 B
C
14 lines
247 B
C
|
5 years ago
|
#ifndef _NOCOPYABLE_H_
|
||
|
|
#define _NOCOPYABLE_H_
|
||
|
|
|
||
|
|
class nocopyable
|
||
|
|
{
|
||
|
|
protected:
|
||
|
|
nocopyable() = default;
|
||
|
|
~nocopyable() = default;
|
||
|
|
private:
|
||
|
|
nocopyable(const nocopyable&) = delete;
|
||
|
|
const nocopyable& operator=(const nocopyable&) = delete;
|
||
|
|
};
|
||
|
|
#endif
|