| 1234567891011121314151617181920212223242526 |
- #ifndef __APPCONTEXT_H__
- #define __APPCONTEXT_H__
- #include <QObject>
- #include "pluginmanager.h"
- #include "projectmanager.h"
- class AppContext : public QObject
- {
- Q_OBJECT
- explicit AppContext(QObject *parent = nullptr);
- ~AppContext();
- public:
- static AppContext &instance();
- PluginManager &pluginManager();
- ProjectManager &projectManager();
- private:
- PluginManager m_pluginMgr;
- ProjectManager m_projectMgr;
- };
- #endif // APPCONTEXT_H
|