aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-04-04 16:00:37 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2025-04-04 16:00:37 +0200
commit7ee1669522bdb6c2c6dae6a0ad7f9a9a60f87ff5 (patch)
treee97658f411184a15a0d893f9bfda225a606f03a0 /main.cpp
downloadminimal-qt-7ee1669522bdb6c2c6dae6a0ad7f9a9a60f87ff5.tar.gz
minimal-qt-7ee1669522bdb6c2c6dae6a0ad7f9a9a60f87ff5.zip
Initial commit
Diffstat (limited to '')
-rw-r--r--main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..1cd93da
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,11 @@
1#include "mainwindow.h"
2
3#include <QApplication>
4
5int main(int argc, char *argv[])
6{
7 QApplication a(argc, argv);
8 MainWindow w;
9 w.show();
10 return a.exec();
11}

Generated with cgit - Back to sebastiano.tronto.net