Files
fluxengine/arch/mx/mx.h
2021-05-15 18:05:53 +02:00

25 lines
385 B
C++

#ifndef MX_H
#define MX_H
#include "decoders/decoders.h"
class MxDecoderProto;
class MxDecoder : public AbstractDecoder
{
public:
MxDecoder(const MxDecoderProto&) {}
virtual ~MxDecoder() {}
void beginTrack();
RecordType advanceToNextRecord();
void decodeSectorRecord();
private:
nanoseconds_t _clock;
int _currentSector;
int _logicalTrack;
};
#endif