summaryrefslogtreecommitdiffstats
path: root/examples/opengl/hellowindow/main.cpp
blob: 1b80dc75233839b1567a2b27c73922f50a5d5161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <QGuiApplication>

#include "hellowindow.h"

int main(int argc, char **argv)
{
    QGuiApplication app(argc, argv);

    HelloWindow window;
    window.setVisible(true);

    return app.exec();
}