21 #include <QtQml/qqml.h>
23 static QObject *system_provider(QQmlEngine *engine, QJSEngine *scriptEngine)
26 Q_UNUSED(scriptEngine)
30 void WizardPlugin::registerTypes(const
char *uri)
32 Q_ASSERT(uri == QLatin1String(
"Wizard"));
33 qmlRegisterType<PageList>(uri, 0, 1,
"PageList");
34 qmlRegisterSingletonType<System>(uri, 0, 1,
"System", system_provider);