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

15 lines
195 B
C++
Raw Normal View History

2017-11-12 22:44:16 +08:00
#include "mainwindow.h"
#include <QApplication>
2017-11-15 22:42:38 +08:00
#include "qqtcore.h"
2017-11-12 22:44:16 +08:00
2017-11-15 22:42:38 +08:00
int main(int argc, char* argv[])
2017-11-12 22:44:16 +08:00
{
2017-11-15 22:42:38 +08:00
2017-11-12 22:44:16 +08:00
QApplication a(argc, argv);
2017-11-15 22:42:38 +08:00
2017-11-12 22:44:16 +08:00
MainWindow w;
w.show();
return a.exec();
}