From 03be230c11ed4f4fad0cd2775339b549e03bf000 Mon Sep 17 00:00:00 2001 From: Philipp Pister <philipp.pister@stud.h-da.de> Date: Thu, 20 Jul 2023 14:51:58 +0000 Subject: [PATCH] Upload New File --- Calculator_Update/main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Calculator_Update/main.cpp diff --git a/Calculator_Update/main.cpp b/Calculator_Update/main.cpp new file mode 100644 index 0000000..253b4a3 --- /dev/null +++ b/Calculator_Update/main.cpp @@ -0,0 +1,12 @@ +#include "calculator.h" + +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + Calculator w; + w.show(); + return a.exec(); +} +//all default -- GitLab