mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
12 lines
234 B
C++
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");
|
|
}
|
|
|