mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
13 lines
227 B
C
13 lines
227 B
C
|
#pragma once
|
||
|
|
||
|
#include <QQmlExtensionPlugin>
|
||
|
|
||
|
class ScreenPlaySysInfoPlugin : public QQmlExtensionPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
|
||
|
|
||
|
public:
|
||
|
void registerTypes(const char *uri);
|
||
|
};
|