Sat, 24 Aug 2019 14:44:42 +0300
things
0 | 1 | #include <QApplication> |
2 | #include "main.h" | |
3 | #include "mainwindow.h" | |
2 | 4 | #include <QTextStream> |
0 | 5 | |
6 | int main(int argc, char *argv[]) | |
7 | { | |
8 | QApplication app{argc, argv}; | |
9 | MainWindow mainwindow; | |
10 | mainwindow.show(); | |
11 | return app.exec(); | |
12 | } |