blob: d197840d739bfbe83b88c9359ec4d63d7617f088 (
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
|
#ifndef QTOPIA_ADDRESS_BOOK_PLUGIN_H
#define QTOPIA_ADDRESS_BOOK_PLUGIN_H
#include <qpe/pim/addressbookaccess.h>
#include <kabc/koaddressbookinterface.h>
#include <kabc/addressee.h>
class QtopiaAddressBookPlugin : public KOAddressBookInterface {
public:
QtopiaAddressBookPlugin();
virtual ~QtopiaAddressBookPlugin();
QString name();
KABC::Addressee::List getAddressees();
QRESULT queryInterface( const QUuid&, QUnknownInterface** );
Q_REFCOUNT
protected:
ulong ref;
private:
AddressBookAccess *access;
};
#endif
|