mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
27 lines
430 B
C++
27 lines
430 B
C++
#ifndef BOOTSTRAP_H
|
|
#define BOOTSTRAP_H
|
|
|
|
#include "coremanager.h"
|
|
#include "widgetmanager.h"
|
|
|
|
#include <QObject>
|
|
|
|
class Bootstrap : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Bootstrap(QObject *parent = nullptr);
|
|
void initialize();
|
|
~Bootstrap(){}
|
|
signals:
|
|
|
|
private:
|
|
CoreManager *coreManager;
|
|
WidgetManager *widgetManager;
|
|
|
|
QThread *workerThread;
|
|
QThread *animationThread;
|
|
};
|
|
|
|
#endif // BOOTSTRAP_H
|