2010-09-28 11:55:30 +02:00
|
|
|
#ifndef %ProjectName:u%_PLUGIN_H
|
|
|
|
|
#define %ProjectName:u%_PLUGIN_H
|
2010-03-19 13:52:16 +01:00
|
|
|
|
|
|
|
|
#include <QtDeclarative/QDeclarativeExtensionPlugin>
|
|
|
|
|
|
2010-09-28 11:55:30 +02:00
|
|
|
class %ProjectName%Plugin : public QDeclarativeExtensionPlugin
|
2010-03-19 13:52:16 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
void registerTypes(const char *uri);
|
|
|
|
|
};
|
|
|
|
|
|
2010-09-28 11:55:30 +02:00
|
|
|
#endif // %ProjectName:u%_PLUGIN_H
|