diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/core.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index d98b15a71..790e23cae 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -40,6 +40,12 @@ namespace Core { | |||
| 40 | 40 | ||
| 41 | class System { | 41 | class System { |
| 42 | public: | 42 | public: |
| 43 | System(const System&) = delete; | ||
| 44 | System& operator=(const System&) = delete; | ||
| 45 | |||
| 46 | System(System&&) = delete; | ||
| 47 | System& operator=(System&&) = delete; | ||
| 48 | |||
| 43 | ~System(); | 49 | ~System(); |
| 44 | 50 | ||
| 45 | /** | 51 | /** |