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

12 lines
176 B
C++

#include "mainwindow.h"
#include <QQtApplication>
int main(int argc, char *argv[])
{
QQtApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}