1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00
ScreenPlay/ScreenPlayWorkshop/screenplayworkshop_plugin.cpp
2018-10-17 20:39:39 +02:00

12 lines
234 B
C++

#include "screenplayworkshop_plugin.h"
#include "workshop.h"
#include <qqml.h>
void ScreenPlayWorkshopPlugin::registerTypes(const char *uri)
{
// @uri net.aimber.workshop
qmlRegisterType<Workshop>(uri, 1, 0, "Workshop");
}