src/relpipe-out-chart.cpp
branchv_0
changeset 4 1622c087f3ea
parent 3 0d857519a4c9
child 9 d88df75dc2eb
--- 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;
 }