mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 09:28:36 +00:00
10 lines
155 B
C++
10 lines
155 B
C++
|
#include <QtWidgets>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication app(argc, argv);
|
||
|
QWidget window;
|
||
|
window.show();
|
||
|
return app.exec();
|
||
|
}
|