mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
19 lines
243 B
C++
19 lines
243 B
C++
#ifndef ZILOGMCZ_H
|
|
#define ZILOGMCZ_H
|
|
|
|
class Sector;
|
|
class Fluxmap;
|
|
|
|
class ZilogMczDecoder : public AbstractDecoder
|
|
{
|
|
public:
|
|
virtual ~ZilogMczDecoder() {}
|
|
|
|
RecordType advanceToNextRecord();
|
|
void decodeSectorRecord();
|
|
};
|
|
|
|
#endif
|
|
|
|
|