diff options
Diffstat (limited to 'decoder.h')
-rw-r--r-- | decoder.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/decoder.h b/decoder.h new file mode 100644 index 0000000..7e76088 --- /dev/null +++ b/decoder.h @@ -0,0 +1,11 @@ +#ifndef DECODER_H +#define DECODER_H + +#include <boost/cstdint.hpp> + +class DecoderBase { + public: + virtual size_t decode(const uint8_t *input, size_t input_size, uint8_t *output, size_t output_size) = 0; +}; + +#endif |