Added brief() to InsightWorkerTask

This commit is contained in:
Nav
2023-03-15 20:16:07 +00:00
parent e8f1329a4d
commit c8bf1c5e8a
13 changed files with 51 additions and 0 deletions

View File

@@ -16,6 +16,11 @@ namespace Bloom
public:
RetrieveMemorySnapshots(Targets::TargetMemoryType memoryType);
QString brief() const override {
return "Loading saved " + QString(this->memoryType == Targets::TargetMemoryType::EEPROM ? "EEPROM" : "RAM")
+ " memory snapshots";
}
signals:
void memorySnapshotsRetrieved(std::vector<MemorySnapshot> snapshots);