project: implemented autorecovery core

Not done yet, but nearly.
This commit is contained in:
itsmattkc
2021-04-01 13:10:43 +11:00
parent 6a841bde82
commit 0ee98a47ea
14 changed files with 504 additions and 56 deletions
+7
View File
@@ -37,12 +37,19 @@ public:
return project_;
}
void SetOverrideFilename(const QString& filename)
{
override_filename_ = filename;
}
protected:
virtual bool Run() override;
private:
Project* project_;
QString override_filename_;
};
}