From b23d4bf1d3a58b4a8304ca9cf050914e073de958 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Sun, 6 Aug 2023 00:25:51 +0200 Subject: c++,codec: Adding fixed array type to native encoding --- c++/codec/schema.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'c++/codec/schema.h') diff --git a/c++/codec/schema.h b/c++/codec/schema.h index 2f63fe9..ba6dd4c 100644 --- a/c++/codec/schema.h +++ b/c++/codec/schema.h @@ -42,6 +42,13 @@ template struct Tuple {}; /** * This acts as a separator of different encodings being mashed together + * For example we can transport any base64 encodings in JSON + * + * using WrappedExample = schema::Tuple< + * schema::Wrapper + * >; + * + * data ex_data; */ template class Wrapper {}; -- cgit v1.2.3