Clean up the Amiga decoder.

This commit is contained in:
David Given
2021-07-11 12:34:40 +02:00
parent 155e8c2a4b
commit 326969e488
4 changed files with 81 additions and 53 deletions

View File

@@ -31,6 +31,9 @@ static inline Bytes decodeFmMfm(const std::vector<bool> bits)
class AbstractDecoder
{
public:
AbstractDecoder() {} // REMOVE ME
AbstractDecoder(const DecoderProto& config) {}
virtual ~AbstractDecoder() {}
static std::unique_ptr<AbstractDecoder> create(const DecoderProto& config);