Joedb 9.1.4
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Decoder.h
Go to the documentation of this file.
1#ifndef joedb_Decoder_declared
2#define joedb_Decoder_declared
3
4#include <string>
5
6namespace joedb
7{
8 /// @ingroup journal
9 class Decoder
10 {
11 public:
12 virtual void decode
13 (
14 const std::string &encoded,
15 char *decoded,
16 size_t decoded_size
17 ) = 0;
18
19 virtual ~Decoder() = default;
20 };
21}
22
23#endif
virtual void decode(const std::string &encoded, char *decoded, size_t decoded_size)=0
virtual ~Decoder()=default
Definition Blob.h:7