summaryrefslogtreecommitdiff
path: root/src/gui/Main.cc
blob: 56974b7a991a5652890f30fecb2e203f30e3e463 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * 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();
}