tempoch-cpp 0.5.3
Header-only C++ wrapper for tempoch
Loading...
Searching...
No Matches
tdb.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "base.hpp"
4
5namespace tempoch {
6
7namespace scale {
8struct TDB {};
9} // namespace scale
10
11template <> struct is_scale<scale::TDB> : std::true_type {};
12
13template <> struct ScaleTraits<scale::TDB> {
14 static constexpr tempoch_scale_tag_t ffi_tag = TEMPOCH_SCALE_TAG_T_TDB;
15 static constexpr const char *name() { return "TDB"; }
16};
17
18} // namespace tempoch
constexpr tempoch_scale_tag_t scale_tag_v
static constexpr const char * name()
Definition tdb.hpp:15