mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
22 lines
325 B
C++
22 lines
325 B
C++
#ifndef MX_H
|
|
#define MX_H
|
|
|
|
#include "decoders/decoders.h"
|
|
|
|
class MxDecoder : public AbstractDecoder
|
|
{
|
|
public:
|
|
virtual ~MxDecoder() {}
|
|
|
|
void beginTrack();
|
|
RecordType advanceToNextRecord();
|
|
void decodeSectorRecord();
|
|
|
|
private:
|
|
nanoseconds_t _clock;
|
|
int _currentSector;
|
|
int _logicalTrack;
|
|
};
|
|
|
|
#endif
|