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

13 lines
229 B
C++
Raw Normal View History

2018-05-26 14:49:18 +08:00
#include "mainwindow.h"
2018-01-30 15:22:02 +08:00
#include <QApplication>
2018-05-26 14:49:18 +08:00
//libQQt v2.4 以后,这个例子已经废弃
int main ( int argc, char* argv[] )
2018-01-30 15:22:02 +08:00
{
2018-05-26 14:49:18 +08:00
QApplication a ( argc, argv );
2018-01-30 15:22:02 +08:00
MainWindow w;
w.show();
return a.exec();
}