2025-01-04 04:12:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
|
|
class Application : public QApplication {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Application(int& argc, char** argv, int = ApplicationFlags);
|
|
|
|
|
~Application() override;
|
|
|
|
|
|
|
|
|
|
static QString GetWorkSpacePath();
|
2025-04-21 00:20:00 +00:00
|
|
|
void Uninit();
|
2025-01-04 04:12:51 +00:00
|
|
|
protected:
|
|
|
|
|
void Init();
|
|
|
|
|
};
|