diff options
author | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-23 20:27:31 -0400 |
---|---|---|
committer | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-23 20:27:31 -0400 |
commit | dedaa26c8068fd125a40a0261aeedd74c8d395e5 (patch) | |
tree | 9c973d88bbd788b40bf67225ae63c881800cd891 /src/gui/main.cc | |
parent | 877aa98855fad77ef93a8c9f5a5e8191fbb9e699 (diff) |
Initial GUI Commit
Diffstat (limited to 'src/gui/main.cc')
-rw-r--r-- | src/gui/main.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gui/main.cc b/src/gui/main.cc new file mode 100644 index 0000000..e592da9 --- /dev/null +++ b/src/gui/main.cc @@ -0,0 +1,11 @@ +#include "GUI.h" + +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + GUI w; + w.show(); + return a.exec(); +} |