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

17 lines
372 B
C++
Raw Normal View History

#include "giftestdialog.h"
#include <qqtapplication.h>
2018-01-22 20:00:51 +08:00
#include "qqtcore.h"
#include "qqtwidgets.h"
int main ( int argc, char* argv[] )
{
/*务必使用QQtApplication否则初始化设置不正确App无法正确的确认目录位置。*/
QQtApplication a ( argc, argv );
GifTestDialog w;
w.show();
2018-01-25 23:59:39 +08:00
//moveFull ( &w );
return a.exec();
}