]> Creatis software - openheart.git/blobdiff - Applications/qtOpenHeart.cxx
commit all the files for the first time
[openheart.git] / Applications / qtOpenHeart.cxx
diff --git a/Applications/qtOpenHeart.cxx b/Applications/qtOpenHeart.cxx
new file mode 100644 (file)
index 0000000..babf6a0
--- /dev/null
@@ -0,0 +1,23 @@
+/**
+* Progam made by Olivier Bernard, associate professor
+* at Institut National des Sciences Appliquees (INSA) Lyon,
+* CREATIS Laboratory,
+* 69621 Villeurbanne, France,
+* 07th of May 2014
+*/
+
+#include <QApplication>
+#include "OpenHeartGui.h"
+
+int main( int argc, char** argv )
+{
+
+  QApplication app(argc, argv);
+
+  OpenHeartGui myViewer;
+  myViewer.show();
+
+  return app.exec();
+
+}
+