mirror of
https://github.com/thp/pyotherside.git
synced 2025-02-05 08:08:23 +08:00
12 lines
230 B
C++
12 lines
230 B
C++
#include <QGuiApplication>
|
|
#include <QQuickView>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
QQuickView view;
|
|
view.setSource(QUrl("qrc:/editor.qml"));
|
|
view.show();
|
|
return app.exec();
|
|
}
|