mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-05 18:42:29 +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 ScreenPlay.screenplaysdk
|
|
qmlRegisterType<ScreenPlaySDK>(uri, 1, 0, "ScreenPlaySDK");
|
|
}
|
|
|