summaryrefslogtreecommitdiff
path: root/modules/codec-unit/c++/unit_schema.hpp
blob: 9ad173fa7cf42ffce4d084d050f8a33b93471d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <forstio/codec/schema.hpp>

namespace saw {
namespace schema {
template<typename Unit, int64_t Exponent>
struct UnitElement {};

template<typename BaseSchema, typename ... Components>
struct Unit {};

template<typename BaseSchema>
using Scalar = Unit<BaseSchema>;
}
}