aboutsummaryrefslogtreecommitdiff
path: root/source/lib/include/wanda/keyed.hpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2023-08-17 12:32:50 +0200
committerFelix Morgner <felix.morgner@gmail.com>2023-08-17 12:32:50 +0200
commit375799fa79d1af76f33299acc20a11a167a021f8 (patch)
tree8f91b982ec96225c33a2f4871730ababffe5cab0 /source/lib/include/wanda/keyed.hpp
parentaf471b9b780869915d3217b228e24d025892de47 (diff)
downloadwanda-375799fa79d1af76f33299acc20a11a167a021f8.tar.xz
wanda-375799fa79d1af76f33299acc20a11a167a021f8.zip
project: restructure libraries and build env
Diffstat (limited to 'source/lib/include/wanda/keyed.hpp')
-rw-r--r--source/lib/include/wanda/keyed.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/source/lib/include/wanda/keyed.hpp b/source/lib/include/wanda/keyed.hpp
deleted file mode 100644
index 58f17ad..0000000
--- a/source/lib/include/wanda/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