summaryrefslogblamecommitdiff
path: root/src/gui/Main.cc
blob: 56974b7a991a5652890f30fecb2e203f30e3e463 (plain) (tree)
1
2
3
4
5
6
7
8
9








                            



                     



                                 
                    
                            
 
                                    




                                                     
/*
 * Main.cc
 *
 *  Created on: Mar 24, 2011
 *      Author: jakob
 */

#include <QApplication>
#include <QWidget>
#include "GLWidget.h"
#include "Vector3D.h"


int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    GLWidget window;
    window.showFullScreen();

//   window.resize(QSize(500, 500));
    window.setWindowTitle("Virtual Hadron Collider");
    window.show();

    return app.exec();
}