blob: 69287dc6089bbbfc9211734e84653ed002a9190a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* examplepluginimpl.cpp
*
* email : harlekin@handhelds.org
*
*/
#include "exampleplugin.h"
#include "examplepluginimpl.h"
ExamplePluginImpl::ExamplePluginImpl() {
examplePlugin = new ExamplePlugin();
}
ExamplePluginImpl::~ExamplePluginImpl() {
delete examplePlugin;
}
TodayPluginObject* ExamplePluginImpl::guiPart() {
return examplePlugin;
}
QRESULT ExamplePluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface ) {
*iface = 0;
if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) {
*iface = this, (*iface)->addRef();
}else
return QS_FALSE;
return QS_OK;
}
Q_EXPORT_INTERFACE() {
Q_CREATE_INSTANCE( ExamplePluginImpl );
}
|