15 lines
245 B
C++
Executable File
15 lines
245 B
C++
Executable File
#include "jma/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;
|
|
};
|