summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginimpl.h
Unidiff
Diffstat (limited to 'core/pim/today/plugins/addressbook/addresspluginimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginimpl.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginimpl.h b/core/pim/today/plugins/addressbook/addresspluginimpl.h
new file mode 100644
index 0000000..a52c021
--- a/dev/null
+++ b/core/pim/today/plugins/addressbook/addresspluginimpl.h
@@ -0,0 +1,42 @@
1/*
2 * addresspluginimpl.h
3 *
4 * copyright : (c) 2003 by Stefan Eilers
5 * email : eilers.stefan@epost.de
6 *
7 * This implementation was derived from the todolist plugin implementation
8 *
9 */
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19#ifndef ADDRESSBOOK_PLUGIN_IMPL_H
20#define ADDRESSBOOK_PLUGIN_IMPL_H
21
22#include <opie/todayplugininterface.h>
23
24class AddressBookPlugin;
25
26class AddressBookPluginImpl : public TodayPluginInterface{
27
28public:
29 AddressBookPluginImpl();
30 virtual ~AddressBookPluginImpl();
31
32 QRESULT queryInterface( const QUuid &, QUnknownInterface** );
33 Q_REFCOUNT
34
35 virtual TodayPluginObject *guiPart();
36
37private:
38 AddressBookPlugin *addressbookPlugin;
39 ulong ref;
40};
41
42#endif