Sun, 22 Sep 2019 11:51:41 +0300
Added lots of code
0 | 1 | #include <QApplication> |
2 | #include "main.h" | |
3 | #include "mainwindow.h" | |
4 | ||
5 | int main(int argc, char *argv[]) | |
6 | { | |
3 | 7 | QApplication app{argc, argv}; |
8 | MainWindow mainwindow; | |
9 | mainwindow.show(); | |
10 | return app.exec(); | |
0 | 11 | } |