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

13 lines
175 B
C++
Raw Normal View History

2017-09-05 18:07:05 +08:00
#include "cmdwidget.h"
2018-06-09 01:38:46 +08:00
#include <QQtApplication>
2017-09-05 18:07:05 +08:00
int main(int argc, char *argv[])
{
2018-06-09 01:38:46 +08:00
QQtApplication a(argc, argv);
2017-09-05 18:07:05 +08:00
CmdWidget w;
w.show();
return a.exec();
}