1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

14 lines
174 B
C++
Raw Normal View History

#include "mainwindow.h"
2017-10-20 20:52:19 +08:00
#include <QApplication>
int main(int argc, char* argv[])
2017-10-20 20:52:19 +08:00
{
QApplication a(argc, argv);
MainWindow w;
2017-10-20 20:52:19 +08:00
w.show();
return a.exec();
}