aboutsummaryrefslogtreecommitdiff
path: root/src/keyed.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/keyed.hpp')
-rw-r--r--src/keyed.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/keyed.hpp b/src/keyed.hpp
deleted file mode 100644
index 58f17ad..0000000
--- a/src/keyed.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * @file keyed.hpp
- * @author Felix Morgner (felix.morgner@gmail.com)
- * @since 1.0.0
- */
-
-#ifndef WANDA_KEYED_HPP
-#define WANDA_KEYED_HPP
-
-namespace wanda
-{
- /**
- * @brief A tag type to prevent construction of a type without a factory
- */
- template<typename Derived>
- struct keyed
- {
- protected:
- struct key
- {
- };
-
- explicit keyed(key) {}
- };
-
-} // namespace wanda
-
-#endif \ No newline at end of file