2009-05-12 22:20:41 +02:00

13 lines
196 B
C++
Executable File

class FileReader : public Reader {
public:
unsigned size();
uint8_t* read(unsigned length = 0);
bool ready();
FileReader(const char *fn);
~FileReader();
private:
file fp;
};