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

10 lines
155 B
C++
Raw Normal View History

2024-08-06 10:24:01 +12:00
#include <QtWidgets>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget window;
window.show();
return app.exec();
}