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.
24 lines
422 B
24 lines
422 B
#ifndef %{APPNAME}_PLUGIN_IMPL_H
|
|
#define %{APPNAME}_PLUGIN_IMPL_H
|
|
|
|
#include <opie/todayplugininterface.h>
|
|
|
|
class %{APPNAME};
|
|
|
|
class %{APPNAME}Impl : public TodayPluginInterface{
|
|
|
|
public:
|
|
%{APPNAME}Impl();
|
|
virtual ~%{APPNAME}Impl();
|
|
|
|
TQRESULT queryInterface( const TQUuid &, TQUnknownInterface** );
|
|
TQ_REFCOUNT
|
|
|
|
virtual TodayPluginObject *guiPart();
|
|
|
|
private:
|
|
%{APPNAME} *examplePlugin;
|
|
};
|
|
|
|
#endif
|