diff options
Diffstat (limited to 'include/cru/common/base.hpp')
-rw-r--r-- | include/cru/common/base.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/cru/common/base.hpp b/include/cru/common/base.hpp index 7dfe8240..d72b97f2 100644 --- a/include/cru/common/base.hpp +++ b/include/cru/common/base.hpp @@ -13,6 +13,11 @@ class Object { }; struct Interface { + Interface() = default; + Interface(const Interface& other) = delete; + Interface(Interface&& other) = delete; + Interface& operator=(const Interface& other) = delete; + Interface& operator=(Interface&& other) = delete; virtual ~Interface() = default; }; } // namespace cru |