Statistics
| Branch: | Revision:

gazetk / GazeTkHub / Hub / src / main.cpp @ 2eb54f9d

History | View | Annotate | Download (228 Bytes)

1 5444009a Thies Pfeiffer
#include <iostream>
2 2eb54f9d Thies Pfeiffer
#include <QApplication>
3
#include "mainwindow.h"
4 5444009a Thies Pfeiffer
5
using namespace std;
6
7 2eb54f9d Thies Pfeiffer
int main( int argc, char** argv ) {
8
    QApplication app(argc, argv);
9
    MainWindow window;
10
    window.show();
11
    return app.exec();
12 5444009a Thies Pfeiffer
}