Files
qt-creator/share/qtcreator/templates/wizards/qml-extension/plugin.h

15 lines
276 B
C
Raw Normal View History

#ifndef %ProjectName:h%_PLUGIN_H
#define %ProjectName:h%_PLUGIN_H
#include <QDeclarativeExtensionPlugin>
class %ProjectName:s%Plugin : public QDeclarativeExtensionPlugin
{
Q_OBJECT
public:
void registerTypes(const char *uri);
};
#endif // %ProjectName:h%_PLUGIN_H