aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/qtquick1-extension/plugin.h
blob: bb4976b12e38b118fe5bf3e6d740a8cb4dcfdbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <QDeclarativeExtensionPlugin>

class %ProjectName:s%Plugin : public QDeclarativeExtensionPlugin
{
    Q_OBJECT
#if QT_VERSION >= 0x050000
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
#endif

public:
    void registerTypes(const char *uri);
};