mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
10 lines
211 B
C
10 lines
211 B
C
|
#pragma once
|
||
|
class NonCopyable
|
||
|
{
|
||
|
protected:
|
||
|
NonCopyable() = default;
|
||
|
~NonCopyable() = default;
|
||
|
NonCopyable(const NonCopyable&) = delete;
|
||
|
NonCopyable& operator = (const NonCopyable&) = delete;
|
||
|
};
|