17 lines
269 B
C
17 lines
269 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QApplication>
|
||
|
|
|
||
|
|
class Application : public QApplication {
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
Application(int& argc, char** argv, int = ApplicationFlags);
|
||
|
|
~Application() override;
|
||
|
|
|
||
|
|
static QString GetWorkSpacePath();
|
||
|
|
|
||
|
|
protected:
|
||
|
|
void Init();
|
||
|
|
void Uninit();
|
||
|
|
};
|