summaryrefslogtreecommitdiff
path: root/modules/codec/c++/data_math.hpp
blob: 3bda481860e64d1f544f734baaafcaf059d7134d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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:




};
}