Files
qt-creator/share/qtcreator/templates/wizards/projects/qtquick2-extension/plugin.cpp
Eike Ziller 6c9f75ff4a Transform Qt Quick 2 Extension Plugin wizard to JSON
Change-Id: I0e59219adeb5b3aa08a99da7c0bb657d793ba2e1
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
2019-08-28 16:38:23 +00:00

13 lines
208 B
C++

#include "%{PluginHdr}"
#include "%{ObjectHdr}"
#include <qqml.h>
void %{PluginName}::registerTypes(const char *uri)
{
// @uri %{Uri}
qmlRegisterType<%{ObjectName}>(uri, 1, 0, "%{ObjectName}");
}