summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/wizards/qtquick2-extension/plugin.h
blob: 3b0bc2a35503cc411a65e875ce5da33915decdde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef %ProjectName:h%_PLUGIN_H
#define %ProjectName:h%_PLUGIN_H

#include <QQmlExtensionPlugin>

class %ProjectName:s%Plugin : public QQmlExtensionPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")

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

#endif // %ProjectName:h%_PLUGIN_H