QtExamples/QtCustomDialogEx/main.cpp
2019-10-04 23:37:27 +08:00

12 lines
182 B
C++

#include "ExCustomMainWin.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ExCustomMainWin w;
w.show();
return a.exec();
}