mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-05 10:32:28 +01:00
19 lines
447 B
C++
19 lines
447 B
C++
#include "screenplaysysinfo_plugin.h"
|
|
#include "sysinfo.h"
|
|
#include <qmetatype.h>
|
|
#include <qqml.h>
|
|
|
|
QObject* ScreenPlaySysInfoSingleton(QQmlEngine* engine, QJSEngine* scriptEngine)
|
|
{
|
|
Q_UNUSED(engine)
|
|
Q_UNUSED(scriptEngine)
|
|
|
|
return new SysInfo();
|
|
}
|
|
|
|
void ScreenPlaySysInfoPlugin::registerTypes(const char* uri)
|
|
{
|
|
// @uri ScreenPlay.Sysinfo
|
|
qmlRegisterSingletonType<SysInfo>(uri, 1, 0, "SysInfo", ScreenPlaySysInfoSingleton);
|
|
}
|