diff options
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>(); - } -}; -} |