blob: abedf73af10dd6d1ad1519fb6e230dfc412f067a (
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 <kabc/koaddressbookinterface.h>
#include <kabc/addressee.h>
#include <qstring.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;
QString getPart( const QString & , bool& , int &start );
private:
};
#endif
|