Mon, 23 Sep 2019 14:06:36 +0300
added regular expressions for the parser
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 | } |