Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (228 Bytes)

1
#include <iostream>
2
#include <QApplication>
3
#include "mainwindow.h"
4

    
5
using namespace std;
6

    
7
int main( int argc, char** argv ) {
8
    QApplication app(argc, argv);
9
    MainWindow window;
10
    window.show();
11
    return app.exec();
12
}