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

12 lines
193 B
C++
Raw Normal View History

2018-04-19 23:03:39 +08:00
#include "mainwindow.h"
2018-04-22 13:03:28 +08:00
#include <QQtApplication>
2018-04-19 23:03:39 +08:00
2018-04-22 13:03:28 +08:00
int main ( int argc, char* argv[] )
2018-04-19 23:03:39 +08:00
{
2018-04-22 13:03:28 +08:00
QQtApplication a ( argc, argv );
2018-04-19 23:03:39 +08:00
MainWindow w;
w.show();
return a.exec();
}