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 @@ | |||
1 | #include <qpe/pim/contact.h> | ||
2 | #include <kabc/addressee.h> | ||
3 | |||
4 | #ifndef QTOPIA_ADDRESSE_H | ||
5 | #define QTOPIA_ADDRESSE_H | ||
6 | |||
7 | class QtopiaAddressee : public KABC::Addressee { | ||
8 | |||
9 | public: | ||
10 | |||
11 | QtopiaAddressee(const PimContact & pimContact); | ||
12 | QtopiaAddressee(); | ||
13 | void setPimContact(const PimContact & pimContact); | ||
14 | |||
15 | private: | ||
16 | QString id; | ||
17 | bool empty; | ||
18 | }; | ||
19 | |||
20 | #endif | ||
21 | |||