mirror of
https://github.com/mappu/miqt.git
synced 2024-12-23 17:28:37 +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();
|
|
}
|