aboutsummaryrefslogtreecommitdiffstats
path: root/entityx/help/NonCopyable.h
diff options
context:
space:
mode:
Diffstat (limited to 'entityx/help/NonCopyable.h')
-rw-r--r--entityx/help/NonCopyable.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/entityx/help/NonCopyable.h b/entityx/help/NonCopyable.h
new file mode 100644
index 0000000..19c0ed1
--- /dev/null
+++ b/entityx/help/NonCopyable.h
@@ -0,0 +1,20 @@
+// Inspired heavily by boost::noncopyable
+
+#pragma once
+
+namespace entityx {
+namespace help {
+
+class NonCopyable {
+protected:
+ NonCopyable() = default;
+ ~NonCopyable() = default;
+
+
+ NonCopyable(const NonCopyable&) = delete;
+ NonCopyable& operator = (const NonCopyable &) = delete;
+};
+
+
+} // namespace help
+} // namespace entityx