summaryrefslogtreecommitdiffabout
path: root/pluginqtopiakabc/qtopiaaddressee.h
blob: c86d6c08249f159d456fb74eb51cd94b2c43cf84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <qpe/pim/contact.h>
#include <kabc/addressee.h>

#ifndef QTOPIA_ADDRESSE_H
#define QTOPIA_ADDRESSE_H

class QtopiaAddressee : public KABC::Addressee {

 public:
 
    QtopiaAddressee(const PimContact & pimContact);
    QtopiaAddressee();
    void setPimContact(const PimContact & pimContact);
    
 private:
    QString id;
    bool empty;
};

#endif