qt5base-lts/examples/opengl/hellowindow/main.cpp

14 lines
205 B
C++
Raw Normal View History

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