Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.cpp « vrplayer - github.com/neutrinolabs/xrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e4821abf1bda2da45c38a7c1165489f74b108f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication::setGraphicsSystem(QLatin1String("native"));
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}