1
0
mirror of https://github.com/mappu/miqt.git synced 2025-01-13 19:00:37 +00:00

10 lines
155 B
C++

#include <QtWidgets>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget window;
window.show();
return app.exec();
}