diff options
Diffstat (limited to 'kapptemplate/kpartplugin/plugin_app.h')
-rw-r--r-- | kapptemplate/kpartplugin/plugin_app.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kapptemplate/kpartplugin/plugin_app.h b/kapptemplate/kpartplugin/plugin_app.h new file mode 100644 index 00000000..3e651499 --- /dev/null +++ b/kapptemplate/kpartplugin/plugin_app.h @@ -0,0 +1,20 @@ +echo "Creating $LOCATION_ROOT/$APP_NAME_LC/plugin_${APP_NAME_LC}.h..."; +cat << EOF > $LOCATION_ROOT/$APP_NAME_LC/plugin_${APP_NAME_LC}.h +#ifndef PLUGIN_${APP_NAME_UC}_H +#define PLUGIN_${APP_NAME_UC}_H + +#include <kparts/plugin.h> + +class Plugin${APP_NAME} : public KParts::Plugin +{ + Q_OBJECT +public: + Plugin${APP_NAME}( QObject* parent = 0, const char* name = 0, + const QStringList &args = QStringList() ); + virtual ~Plugin${APP_NAME}(); + +public slots: + void slotAction(); +}; + +#endif // PLUGIN_${APP_NAME_UC}_H |