VideoVis  0.9
Generates a volume visualisation of a video
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
main.cpp
Go to the documentation of this file.
1 #include "mainwindow.h"
2 #include <QApplication>
3 
4 int main(int argc, char *argv[])
5 {
6  QApplication a(argc, argv);
7 
8  MainWindow w;
9  w.setWindowFlags(Qt::Window);
10  w.show();
11 
12  return a.exec();
13 }