diff options
author | Simon Rettberg | 2024-04-29 15:46:12 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-04-29 15:46:12 +0200 |
commit | efa4b67ced6d4e0a5c850640e615724782637d50 (patch) | |
tree | a50d63b1867206fb72af4a69567c3848c47da68d /src/main.cpp | |
download | cowgui-efa4b67ced6d4e0a5c850640e615724782637d50.tar.gz cowgui-efa4b67ced6d4e0a5c850640e615724782637d50.tar.xz cowgui-efa4b67ced6d4e0a5c850640e615724782637d50.zip |
Inischl commit
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..310d2a3 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,12 @@ +#include "gui.h" + +#include <QApplication> + +int main(int argc, char **argv) +{ + QApplication app(argc, argv); + Gui window("http://10.4.9.57/cow/", "uuuuuuid"); + + window.show(); + return QGuiApplication::exec(); +} |