Diffstat (limited to 'pluginqtopiakabc/qtopiaaddressee.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | pluginqtopiakabc/qtopiaaddressee.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pluginqtopiakabc/qtopiaaddressee.h b/pluginqtopiakabc/qtopiaaddressee.h new file mode 100644 index 0000000..c86d6c0 --- a/dev/null +++ b/pluginqtopiakabc/qtopiaaddressee.h @@ -0,0 +1,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 + |