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

15 lines
248 B
C++
Executable File

#include <libjma/jma.h>
class JMAReader : public Reader {
public:
unsigned size();
uint8_t* read(unsigned length = 0);
JMAReader(const char *fn);
private:
JMA::jma_open JMAFile;
unsigned filesize;
std::string cname;
};