diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-11-30 13:44:59 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-11-30 13:44:59 +0100 |
commit | 390726a83913552e63d4499d216ea6f370d6adad (patch) | |
tree | eabfb4cb6d2057c6160d687f2aaede5f24f15692 /confui/main.cpp | |
parent | 0daf8c516e48551098cc53f3f88cb52e9a47df35 (diff) |
Diffstat (limited to 'confui/main.cpp')
-rw-r--r-- | confui/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/confui/main.cpp b/confui/main.cpp new file mode 100644 index 0000000..fd3e533 --- /dev/null +++ b/confui/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" + +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + return a.exec(); +} |