Mechanical refactor to rearrange the source files into a more pleasing order.

This commit is contained in:
David Given
2019-08-06 22:25:11 +02:00
parent 5748f017dd
commit 4b07c38782
35 changed files with 14 additions and 14 deletions

18
arch/zilogmcz/zilogmcz.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef ZILOGMCZ_H
#define ZILOGMCZ_H
class Sector;
class Fluxmap;
class ZilogMczDecoder : public AbstractDecoder
{
public:
virtual ~ZilogMczDecoder() {}
RecordType advanceToNextRecord();
void decodeSectorRecord();
};
#endif