summaryrefslogtreecommitdiff
path: root/decoder.h
blob: b4dcdb6e1daa04b7fdeac8ab18e8d403103f8bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef DECODER_H
#define DECODER_H

#include <boost/cstdint.hpp>
#include <boost/function.hpp>
#include <boost/functional/factory.hpp>
#include <boost/functional/value_factory.hpp>

#include <string>

class DecoderBase {
	public:
		virtual size_t decode(const uint8_t *input, size_t input_size, uint8_t *output, size_t output_size) = 0;
};

namespace decoder {
	void init();
	DecoderBase *get_decoder(const std::string& name);
};

#endif