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

12 lines
182 B
C++
Raw Normal View History

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