13 lines
236 B
C++
13 lines
236 B
C++
|
#include <QtWidgets/QApplication>
|
||
|
#include <QMainWindow>
|
||
|
#include "ui_mainwindow.h"
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
QApplication app(argc, argv);
|
||
|
QMainWindow w;
|
||
|
Ui::MainWindow ui;
|
||
|
ui.setupUi(&w);
|
||
|
w.show();
|
||
|
return app.exec();
|
||
|
}
|