diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-05 05:58:49 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-05 05:58:49 +0100 |
commit | 70a3abcb3aad4c5e74b4b9fa6ac76508ac157f55 (patch) | |
tree | 07f6516c19fd4f5eda0c7a5c8cb440570eafccfb /modules/codec/c++/schema_factory.h | |
parent | 162e5c5da90f4316725086fa6a2ae13b3c22104e (diff) |
codec: Adding a basic csv decoder. Unfinished
Diffstat (limited to 'modules/codec/c++/schema_factory.h')
-rw-r--r-- | modules/codec/c++/schema_factory.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/codec/c++/schema_factory.h b/modules/codec/c++/schema_factory.h index 91094fe..47185be 100644 --- a/modules/codec/c++/schema_factory.h +++ b/modules/codec/c++/schema_factory.h @@ -39,6 +39,9 @@ struct schema_factory<schema::Tuple<T...>> { } }; +/** + * This creates the base schema + */ template<typename T> constexpr schema_factory<T> build_schema() noexcept { return {}; |