summaryrefslogtreecommitdiff
path: root/modules/codec-unit/c++/unit_schema.hpp
blob: 5de87701cf0737287acb5813c8bd255bb61542ab (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 Pure = Unit<BaseSchema>;
}
}