1
0
mirror of https://github.com/thp/pyotherside.git synced 2025-02-05 08:08:23 +08:00
pyotherside/examples/qrc/qrc_example.cpp
2014-02-16 20:15:50 +01:00

13 lines
251 B
C++

#include <QGuiApplication>
#include <QQuickView>
#include <QUrl>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQuickView view;
view.setSource(QUrl("qrc:/qrc_example.qml"));
view.show();
return app.exec();
}