began base encoder type for abstracting around exporting

Essentially the same principle as Decoders but somewhat different functionality.
This commit is contained in:
itsmattkc
2019-12-16 18:04:30 +11:00
parent 23159025a4
commit 8945fbe5fe
5 changed files with 106 additions and 1 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ public:
Decoder(Stream* fs);
// Necessary for subclassing, it's empty
virtual ~Decoder();
virtual ~Decoder() override;
DISABLE_COPY_MOVE(Decoder)