summaryrefslogtreecommitdiff
path: root/modules/codec-unit/c++/unit_transform.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec-unit/c++/unit_transform.hpp')
-rw-r--r--modules/codec-unit/c++/unit_transform.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/codec-unit/c++/unit_transform.hpp b/modules/codec-unit/c++/unit_transform.hpp
new file mode 100644
index 0000000..6f40df5
--- /dev/null
+++ b/modules/codec-unit/c++/unit_transform.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <type_traits>
+#include "unit_schema.hpp"
+
+namespace saw {
+namespace impl {
+
+template<typename T, typename U>
+class unit_matching;
+
+template<typename... T>
+class unit_redux_list {
+ static_assert(sizeof...(T) == 0u, "Template type not supported");
+
+ using reduced_type = unit_redux_list<>;
+};
+}
+}