aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/base.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/common/base.hpp')
-rw-r--r--include/cru/common/base.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/cru/common/base.hpp b/include/cru/common/base.hpp
new file mode 100644
index 00000000..7dfe8240
--- /dev/null
+++ b/include/cru/common/base.hpp
@@ -0,0 +1,18 @@
+#pragma once
+#include "pre_config.hpp"
+
+namespace cru {
+class Object {
+ public:
+ Object() = default;
+ Object(const Object&) = default;
+ Object& operator=(const Object&) = default;
+ Object(Object&&) = default;
+ Object& operator=(Object&&) = default;
+ virtual ~Object() = default;
+};
+
+struct Interface {
+ virtual ~Interface() = default;
+};
+} // namespace cru