diff options
Diffstat (limited to 'modules/codec/c++/schema.hpp')
-rw-r--r-- | modules/codec/c++/schema.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/codec/c++/schema.hpp b/modules/codec/c++/schema.hpp index 5a2f440..2ef7c77 100644 --- a/modules/codec/c++/schema.hpp +++ b/modules/codec/c++/schema.hpp @@ -88,6 +88,9 @@ template <class T, size_t N> struct Primitive { (std::is_same_v<T, FloatingPoint> && (N == 4 || N == 8)), "Primitive Type is not supported"); static constexpr string_literal name = "Primitive"; + + using InterfaceSchema = Primitive<T,N>; + using StorageSchema = Primitive<T,N>; }; using Int8 = Primitive<SignedInteger, 1>; |