| #pragma once | |
| #include "sfxformat.h" | |
| #include "File.h" | |
| class Formatter | |
| { | |
| public: | |
| File* _file; | |
| Formatter(File* file); | |
| public: | |
| ~Formatter(void); | |
| public: | |
| SFXFooter* ParseFooter(void); | |
| public: | |
| SFXHeader* ParseHeader(void); | |
| public: | |
| ExecutionInfo* ParseExecutionInfo(void); | |
| public: | |
| FileInformation* ParseFileInformationTable(UINT entriesCount); | |
| }; |