qt5base-lts/examples/opengl/hellowindow/main.cpp
Samuel Rødal f1601a4930 Added QWindow example in examples/opengl/hellowindow.
(cherry picked from commit 712f5fe0acc7ef73117151cd8206a0d4f5d01428)
2011-04-28 15:39:54 +02:00

14 lines
205 B
C++

#include <QGuiApplication>
#include "hellowindow.h"
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
HelloWindow window;
window.setVisible(true);
return app.exec();
}