RedPanda-CPP/RedPandaIDE/main.cpp

15 lines
251 B
C++
Raw Normal View History

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