From 54216c4c28b81d33bd5c8b6e3b5a6083b53093fd Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Sun, 25 Dec 2022 01:58:03 -0500 Subject: Initial commit This project can also serve as a base for other Qt projects, as necessary. --- src/main.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main.cpp (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..fd3e533 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" + +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + return a.exec(); +} -- cgit v1.2.3-54-g00ecf