[nostalgia/studio] Add ability to subscribe to updates to files

This commit is contained in:
2020-03-19 01:52:31 -05:00
parent 4273e72e74
commit e1d3fe0d6b
4 changed files with 92 additions and 15 deletions
+6 -5
View File
@@ -13,11 +13,12 @@
namespace nostalgia::studio {
struct Context {
QString appName;
QString orgName;
QWidget* tabParent = nullptr;
const class Project* project = nullptr;
class Context {
public:
QString appName;
QString orgName;
QWidget* tabParent = nullptr;
const class Project* project = nullptr;
};
}