You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
542 B
22 lines
542 B
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 <tdeparts/plugin.h>
|
|
|
|
class Plugin${APP_NAME} : public KParts::Plugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Plugin${APP_NAME}( TQObject* parent = 0, const char* name = 0,
|
|
const TQStringList &args = TQStringList() );
|
|
virtual ~Plugin${APP_NAME}();
|
|
|
|
public slots:
|
|
void slotAction();
|
|
};
|
|
|
|
#endif // PLUGIN_${APP_NAME_UC}_H
|