2021-04-06 23:10:57 +08:00
|
|
|
#include "mainwindow.h"
|
2021-04-08 10:29:21 +08:00
|
|
|
#include "settings.h"
|
2021-04-06 23:10:57 +08:00
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2021-04-08 10:29:21 +08:00
|
|
|
Settings s;
|
|
|
|
pSettings = &s;
|
2021-04-06 23:10:57 +08:00
|
|
|
MainWindow w;
|
2021-04-08 10:29:21 +08:00
|
|
|
pMainWindow = &w;
|
2021-04-06 23:10:57 +08:00
|
|
|
w.show();
|
|
|
|
return a.exec();
|
|
|
|
}
|