mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 11:32:42 +01:00
12 lines
246 B
C++
12 lines
246 B
C++
|
#include "screenplay-sdk_plugin.h"
|
||
|
#include "screenplaysdk.h"
|
||
|
|
||
|
#include <qqml.h>
|
||
|
|
||
|
void ScreenPlay_SDKPlugin::registerTypes(const char *uri)
|
||
|
{
|
||
|
// @uri net.aimber.screenplaysdk
|
||
|
qmlRegisterType<ScreenPlaySDK>(uri, 1, 0, "ScreenPlaySDK");
|
||
|
}
|
||
|
|