summaryrefslogtreecommitdiffstats
path: root/mmss/types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mmss/types.hpp')
-rw-r--r--mmss/types.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/mmss/types.hpp b/mmss/types.hpp
index a976823..36ad77b 100644
--- a/mmss/types.hpp
+++ b/mmss/types.hpp
@@ -42,6 +42,15 @@ struct gmrf_iface {};
namespace MMSS {
+class nocopy_t {
+protected:
+ nocopy_t() = default;
+
+private:
+ nocopy_t(nocopy_t const&) = delete;
+ nocopy_t& operator=(nocopy_t const&) = delete;
+};
+
class context_t;
class config_t;
class iface_t;