blob: ccb7c3b3843dd7e9bf8a2016e7b179b96a3874ed (
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();
QRESULT queryInterface( const QUuid &, QUnknownInterface** );
Q_REFCOUNT
virtual TodayPluginObject *guiPart();
private:
%{APPNAME} *examplePlugin;
};
#endif
|