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

11 lines
199 B
C++
Raw Normal View History

2018-02-07 14:27:51 +08:00
#include <QCoreApplication>
#include <QDebug>
#include <qqtapplication.h>
int main ( int argc, char* argv[] )
{
QQtApplication a ( argc, argv );
qDebug() << "ccc";
return a.exec();
}