mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
ref: change initialize logic
*complete without change animation
This commit is contained in:
26
bootstrap.h
Normal file
26
bootstrap.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user