Files
fluxengine/lib/mx/mx.h
2019-07-02 00:40:38 +02:00

21 lines
293 B
C++

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