aboutsummaryrefslogtreecommitdiff
path: root/src/keyed.hpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2018-11-29 18:29:34 +0100
committerFelix Morgner <felix.morgner@gmail.com>2018-11-29 18:29:34 +0100
commitca992f4f76d09965e4e62c805daa02b23266a224 (patch)
tree07eaeae4e288832306c353dd46cd3c2e52b8b5db /src/keyed.hpp
parentd018603b1ff8e93902e8c9c904199f54076154c4 (diff)
downloadwanda-ca992f4f76d09965e4e62c805daa02b23266a224.tar.xz
wanda-ca992f4f76d09965e4e62c805daa02b23266a224.zip
control: begin control interface implementation
Diffstat (limited to 'src/keyed.hpp')
-rw-r--r--src/keyed.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/keyed.hpp b/src/keyed.hpp
new file mode 100644
index 0000000..de3500e
--- /dev/null
+++ b/src/keyed.hpp
@@ -0,0 +1,20 @@
+#ifndef WANDA_KEYED_HPP
+#define WANDA_KEYED_HPP
+
+namespace wanda
+{
+
+template <typename Derived>
+struct keyed
+{
+ protected:
+ struct key
+ {
+ };
+
+ explicit keyed(key) {}
+};
+
+} // namespace wanda
+
+#endif \ No newline at end of file