首次提交

This commit is contained in:
2026-06-16 13:38:08 +08:00
commit ec32ae543d
192 changed files with 13162 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Application_H
#define Application_H
#include <QApplication>
#include <QStack>
class MainWidget;
class Application : public QApplication {
public:
~Application() override;
bool notify(QObject *object, QEvent *event) override;
MainWidget *mMainWidget;
explicit Application(int &argc, char **argv, int = ApplicationFlags);
};
#endif