summaryrefslogtreecommitdiff
path: root/generator/qtcpp/templates/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'generator/qtcpp/templates/plugin.h')
-rw-r--r--generator/qtcpp/templates/plugin.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/generator/qtcpp/templates/plugin.h b/generator/qtcpp/templates/plugin.h
new file mode 100644
index 0000000..1952c35
--- /dev/null
+++ b/generator/qtcpp/templates/plugin.h
@@ -0,0 +1,18 @@
+{# Copyright (c) Pelagicore AB 2016 #}
+/****************************************************************************
+** This is an auto-generated file.
+** Do not edit! All changes made to it will be lost.
+****************************************************************************/
+
+#pragma once
+
+#include <QtQml>
+
+class Plugin : public QQmlExtensionPlugin
+{
+ Q_OBJECT
+ Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
+
+public:
+ void registerTypes(const char *uri);
+};