capture_gif/main.cpp

14 lines
230 B
C++
Raw Permalink Normal View History

2021-09-13 06:08:34 +00:00
#include "xygifframe.h"
#include <QApplication>
#include <QIcon>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setWindowIcon(QIcon(":/gif.ico"));
XYGifFrame w;
w.show();
return a.exec();
}