apvr eatavel eao rso jyrsovrs
to-do: - make an "exporting ROM" dialog with progress and all - move TIunA export to the ROM export framework - perhaps do the same with ZSM in the future?
This commit is contained in:
parent
48523add00
commit
a4aa408912
8 changed files with 80 additions and 72 deletions
|
|
@ -51,13 +51,16 @@ struct DivROMExportProgress {
|
|||
};
|
||||
|
||||
class DivROMExport {
|
||||
std::vector<String> exportLog;
|
||||
std::mutex logLock;
|
||||
void logAppend(String what);
|
||||
protected:
|
||||
std::vector<String> exportLog;
|
||||
std::vector<DivROMExportOutput> output;
|
||||
std::mutex logLock;
|
||||
void logAppend(String what);
|
||||
public:
|
||||
virtual bool go(DivEngine* eng);
|
||||
virtual void abort();
|
||||
virtual std::vector<DivROMExportOutput> getResult();
|
||||
virtual void wait();
|
||||
std::vector<DivROMExportOutput>& getResult();
|
||||
virtual bool hasFailed();
|
||||
virtual DivROMExportProgress getProgress();
|
||||
virtual ~DivROMExport() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue