X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Applications%2FqtOpenHeart.cxx;fp=Applications%2FqtOpenHeart.cxx;h=babf6a028439ed3bd30f18e4d238f347b65b8999;hb=e989157c905531306964b1f4d2d70991029aaca2;hp=0000000000000000000000000000000000000000;hpb=a29e955d81fcaf6b37db4a5cb168549f96f1fff3;p=openheart.git diff --git a/Applications/qtOpenHeart.cxx b/Applications/qtOpenHeart.cxx new file mode 100644 index 0000000..babf6a0 --- /dev/null +++ b/Applications/qtOpenHeart.cxx @@ -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 +#include "OpenHeartGui.h" + +int main( int argc, char** argv ) +{ + + QApplication app(argc, argv); + + OpenHeartGui myViewer; + myViewer.show(); + + return app.exec(); + +} +