summaryrefslogtreecommitdiff
path: root/modules/codec/c++/data_math.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec/c++/data_math.hpp')
-rw-r--r--modules/codec/c++/data_math.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/codec/c++/data_math.hpp b/modules/codec/c++/data_math.hpp
new file mode 100644
index 0000000..3bda481
--- /dev/null
+++ b/modules/codec/c++/data_math.hpp
@@ -0,0 +1,16 @@
+#pragma once
+
+#include "schema_math.hpp"
+
+namespace saw {
+template<typename T>
+class data<schema::Quarternion<T>,encode::Native> {
+private:
+ std::array<data<T,encode::Native>, 4u> vals_;
+public:
+
+
+
+
+};
+}