From 2e27a93e3ed189b4d96ec7df6e05b102dd2e841a Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Mon, 18 Dec 2017 00:00:21 +0100 Subject: Replace tabs with spaces, set up CMake build system Other changes: - update gitignore - build scripts under `etc` - fix window --- src/main.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 83bba4c..b4a143b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,16 +1,24 @@ #include "diagram/Structogram.hpp" +#include "ui/Window.hpp" #include #include +#include + using namespace samb; int main(int argc, char *argv[]) { - Structogram st("Example"); + QApplication app(argc, argv); + + Window window; + window.show(); + + Structogram st("Example"); - return 0; + return app.exec(); } -- cgit v1.2.1