diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-08-03 16:28:53 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-08-03 16:28:53 +0200 |
| commit | a8e6bd3e1d435038591b3a16fb31136539c5efec (patch) | |
| tree | f1e1ac1be12a07f9faa21f59c4e2f7e45ada31f3 /src/base/QXmppVCardIq.h | |
| parent | 1268a64bdd1320639cad0d9c8331fb6fd682b30c (diff) | |
| download | qxmpp-a8e6bd3e1d435038591b3a16fb31136539c5efec.tar.gz | |
Make it possible to have several addresses in vCards.
Diffstat (limited to 'src/base/QXmppVCardIq.h')
| -rw-r--r-- | src/base/QXmppVCardIq.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/base/QXmppVCardIq.h b/src/base/QXmppVCardIq.h index 769ca783..ba83eb7c 100644 --- a/src/base/QXmppVCardIq.h +++ b/src/base/QXmppVCardIq.h @@ -56,6 +56,21 @@ public: QXmppVCardAddress& operator=(const QXmppVCardAddress &other); + QString country() const; + void setCountry(const QString &country); + + QString locality() const; + void setLocality(const QString &locality); + + QString postcode() const; + void setPostcode(const QString &postcode); + + QString region() const; + void setRegion(const QString ®ion); + + QString street() const; + void setStreet(const QString &street); + Type type() const; void setType(Type type); |
