blob: ddc63bc2c069aeff686f221921f7ece5eda2624a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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
|