KINECT STATS GENERATOR FOR SPORTS VISUALISATION  1.0
main.cpp
Go to the documentation of this file.
00001 #include <QtGui/QApplication>
00002 #include "MainWindow.h"
00003 /* this code runs the basic main window and is created by the Qt Creator app */
00004 int main(int argc, char *argv[])
00005 {
00006   // make an instance of the QApplication
00007   QApplication a(argc, argv);
00008 
00009   // Create a new MainWindow
00010   // for our application
00011   MainWindow w;
00012   // show our statistics application
00013   w.show();
00014 
00015   // return control over to Qt framework
00016   return a.exec();
00017 }
 All Classes Files Functions Variables Enumerations Enumerator