comparison: src/main.cpp
src/main.cpp
- changeset 0
- f9f4d4d6f162
- child 2
- 2bdc3ac5e77c
equal
deleted
inserted
replaced
|
1 #include <QApplication> |
|
2 #include "main.h" |
|
3 #include "mainwindow.h" |
|
4 |
|
5 int main(int argc, char *argv[]) |
|
6 { |
|
7 QApplication app{argc, argv}; |
|
8 MainWindow mainwindow; |
|
9 mainwindow.show(); |
|
10 return app.exec(); |
|
11 } |