qt_demoe/netfriend/imagecropper/example/main.cpp

12 lines
172 B
C++
Raw Normal View History

2021-11-17 07:33:19 +00:00
#include "mainwindow.h"
2019-10-12 01:00:12 +00:00
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2021-11-17 07:33:19 +00:00
MainWindow w;
2019-10-12 01:00:12 +00:00
w.show();
return a.exec();
}