mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -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
 | |
| 
 | |
| 
 |