]> Creatis software - openheart.git/blob - Applications/qtOpenHeart.cxx
commit all the files for the first time
[openheart.git] / Applications / qtOpenHeart.cxx
1 /**
2 * Progam made by Olivier Bernard, associate professor
3 * at Institut National des Sciences Appliquees (INSA) Lyon,
4 * CREATIS Laboratory,
5 * 69621 Villeurbanne, France,
6 * 07th of May 2014
7 */
8
9 #include <QApplication>
10 #include "OpenHeartGui.h"
11
12 int main( int argc, char** argv )
13 {
14
15   QApplication app(argc, argv);
16
17   OpenHeartGui myViewer;
18   myViewer.show();
19
20   return app.exec();
21
22 }
23