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

13 lines
187 B
C++
Raw Normal View History

2018-05-02 14:38:04 +08:00
#include "dialog.h"
#include <QQtApplication>
int main ( int argc, char* argv[] )
{
QQtApplication a ( argc, argv );
Dialog w;
w.show();
return a.exec();
}