mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
19 lines
450 B
C++
19 lines
450 B
C++
#include "symbol_file_interface.hpp"
|
|
|
|
class SymbolMap;
|
|
|
|
class ViceLabelFile : public SymbolFileInterface {
|
|
public:
|
|
ViceLabelFile() {}
|
|
virtual ~ViceLabelFile() {}
|
|
|
|
const char *getName() const;
|
|
const char *getDescription() const;
|
|
|
|
int32_t scoreReadString(const nall::lstring &rows) const;
|
|
bool read(const nall::lstring &rows, SymbolMap *map) const;
|
|
|
|
bool write(nall::file &file, SymbolMap *map) const;
|
|
|
|
uint32_t getFeatures() const;
|
|
};
|