diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
commit | a14896f9ed209dd3f9597722e5a5697bd7dbf531 (patch) | |
tree | 089ca5cbbd206d1921f8f6b53292f5bc1902ca5c /c++/codec/csv.h | |
parent | 84ecdcbca9e55b1f57fbb832e12ff4fdbb86e7c9 (diff) |
meta: Renamed folder containing source
Diffstat (limited to 'c++/codec/csv.h')
-rw-r--r-- | c++/codec/csv.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/c++/codec/csv.h b/c++/codec/csv.h deleted file mode 100644 index 67c2c1d..0000000 --- a/c++/codec/csv.h +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include "data.h" - -namespace saw { -namespace encode { -struct Csv {}; -} - -template<typename Schema> -class codec<Schema, encode::Csv> { -public: - template<typename FromEncode> - static error_or<void> encode(const data<Schema, FromEncode>& from, data<Schema,encode::Csv>& to){ - - return make_error<err::not_implemented>(); - } - - template<typename ToDecode> - static error_or<void> decode(data<Schema,encode::Csv>& from, data<Schema, FromEncode>& to){ - - return make_error<err::not_implemented>(); - } -}; -} |