--- a/src/relpipe-out-chart.cpp Mon Sep 24 14:03:46 2018 +0200
+++ b/src/relpipe-out-chart.cpp Mon Sep 24 16:11:19 2018 +0200
@@ -8,6 +8,7 @@
#include <relpipe/reader/RelationalReader.h>
#include <relpipe/reader/RelpipeReaderException.h>
+#include "RelpipeChartMainWindow.h"
using namespace relpipe::cli;
using namespace relpipe::reader;
@@ -21,6 +22,13 @@
std::shared_ptr<RelationalReader> reader(Factory::create(std::cin));
int resultCode = CLI::EXIT_CODE_UNEXPECTED_ERROR;
+
+ RelpipeChartMainWindow window;
+ window.resize(640, 480);
+ window.show();
+
+ app.exec();
+ //return app.exec();
return resultCode;
}