src/main.cpp@68988ebc2a68
src/main.cpp
Mon, 23 Sep 2019 14:06:36 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Mon, 23 Sep 2019 14:06:36 +0300
- changeset 4
- 68988ebc2a68
- parent 3
-
55a55a9ec2c2
- child 6
-
73e448b2943d
- permissions
- -rw-r--r--
added regular expressions for the parser
#include <QApplication>
#include "main.h"
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication app{argc, argv};
MainWindow mainwindow;
mainwindow.show();
return app.exec();
}