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

18 lines
373 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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