diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-11 07:05:41 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-11 07:05:41 +0000 |
| commit | dc2b329fc4a3091ed3dde2c859681d35d347b345 (patch) | |
| tree | 27fa14dd4abf698bfacf440536fda7e15f5ae54d | |
| parent | e27715a016c0ccfb3dd030f585c253ee32f6791a (diff) | |
| download | qxmpp-dc2b329fc4a3091ed3dde2c859681d35d347b345.tar.gz | |
hide parsing/serialisation methods from doxygen
| -rw-r--r-- | source/QXmppBind.h | 2 | ||||
| -rw-r--r-- | source/QXmppByteStreamIq.h | 2 | ||||
| -rw-r--r-- | source/QXmppDiscoveryIq.h | 2 | ||||
| -rw-r--r-- | source/QXmppIbbIq.h | 6 | ||||
| -rw-r--r-- | source/QXmppMucIq.h | 4 | ||||
| -rw-r--r-- | source/QXmppRosterIq.h | 2 | ||||
| -rw-r--r-- | source/QXmppRpcIq.h | 2 | ||||
| -rw-r--r-- | source/QXmppStreamInitiationIq.h | 2 | ||||
| -rw-r--r-- | source/QXmppVCard.h | 2 |
9 files changed, 24 insertions, 0 deletions
diff --git a/source/QXmppBind.h b/source/QXmppBind.h index 1c260bb7..d498d415 100644 --- a/source/QXmppBind.h +++ b/source/QXmppBind.h @@ -49,8 +49,10 @@ public: /// \endcond protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QString m_jid; diff --git a/source/QXmppByteStreamIq.h b/source/QXmppByteStreamIq.h index c3f8db02..401929f5 100644 --- a/source/QXmppByteStreamIq.h +++ b/source/QXmppByteStreamIq.h @@ -80,8 +80,10 @@ public: static bool isByteStreamIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: Mode m_mode; diff --git a/source/QXmppDiscoveryIq.h b/source/QXmppDiscoveryIq.h index c0124ec9..38bdc867 100644 --- a/source/QXmppDiscoveryIq.h +++ b/source/QXmppDiscoveryIq.h @@ -101,8 +101,10 @@ public: static bool isDiscoveryIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QStringList m_features; diff --git a/source/QXmppIbbIq.h b/source/QXmppIbbIq.h index b36c8f7e..05240178 100644 --- a/source/QXmppIbbIq.h +++ b/source/QXmppIbbIq.h @@ -44,8 +44,10 @@ public: static bool isIbbOpenIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: long m_block_size; @@ -63,8 +65,10 @@ public: static bool isIbbCloseIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QString m_sid; @@ -87,8 +91,10 @@ public: static bool isIbbDataIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: quint16 m_seq; diff --git a/source/QXmppMucIq.h b/source/QXmppMucIq.h index df8d7aac..3abcf5b4 100644 --- a/source/QXmppMucIq.h +++ b/source/QXmppMucIq.h @@ -72,8 +72,10 @@ public: static bool isMucAdminIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QList<QXmppMucAdminIq::Item> m_items; @@ -96,8 +98,10 @@ public: static bool isMucOwnerIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QXmppDataForm m_form; diff --git a/source/QXmppRosterIq.h b/source/QXmppRosterIq.h index 03c9969e..2057bf72 100644 --- a/source/QXmppRosterIq.h +++ b/source/QXmppRosterIq.h @@ -105,8 +105,10 @@ public: /// \endcond protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QList<Item> m_items; diff --git a/source/QXmppRpcIq.h b/source/QXmppRpcIq.h index 8ddbb378..3693f133 100644 --- a/source/QXmppRpcIq.h +++ b/source/QXmppRpcIq.h @@ -112,8 +112,10 @@ public: static bool isRpcErrorIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QXmppRpcInvokeIq m_query; diff --git a/source/QXmppStreamInitiationIq.h b/source/QXmppStreamInitiationIq.h index 01161561..81d31b77 100644 --- a/source/QXmppStreamInitiationIq.h +++ b/source/QXmppStreamInitiationIq.h @@ -54,8 +54,10 @@ public: static bool isStreamInitiationIq(const QDomElement &element); protected: + /// \cond void parseElementFromChild(const QDomElement &element); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QString m_mimeType; diff --git a/source/QXmppVCard.h b/source/QXmppVCard.h index 1f84eeff..c551849f 100644 --- a/source/QXmppVCard.h +++ b/source/QXmppVCard.h @@ -65,8 +65,10 @@ public: /// \endcond protected: + /// \cond void parseElementFromChild(const QDomElement&); void toXmlElementFromChild(QXmlStreamWriter *writer) const; + /// \endcond private: QString m_firstName; |
