summaryrefslogtreecommitdiff
path: root/decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'decoder.h')
-rw-r--r--decoder.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/decoder.h b/decoder.h
index 7e76088..b4dcdb6 100644
--- a/decoder.h
+++ b/decoder.h
@@ -2,10 +2,20 @@
#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