Files
RRJClient/bootstrap.h
semenov 0c805708ef ref: change initialize logic
*complete without change animation
2025-08-14 15:40:46 +03:00

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