diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-04-06 16:52:46 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2020-04-06 16:52:46 +0200 |
| commit | 6a1a4dd2630bb675810e067e0c47645b482868c7 (patch) | |
| tree | 4e1bd71a6fa4eb0f2109408d25305f30cfa09550 /src/base | |
| parent | 3bc421595e621aa2f0561356e36876bae176c5bf (diff) | |
| download | qxmpp-6a1a4dd2630bb675810e067e0c47645b482868c7.tar.gz | |
Add \since tags for QXmpp 0.9.3 everywhere
Diffstat (limited to 'src/base')
| -rw-r--r-- | src/base/QXmppStun.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/base/QXmppStun.h b/src/base/QXmppStun.h index fe835daa..80dcc10a 100644 --- a/src/base/QXmppStun.h +++ b/src/base/QXmppStun.h @@ -241,10 +241,20 @@ private: class QXMPP_EXPORT QXmppIceConnection : public QXmppLoggable { Q_OBJECT + + /// /// The ICE gathering state, that is the discovery of local candidates + /// + /// \since QXmpp 0.9.3 + /// Q_PROPERTY(QXmppIceConnection::GatheringState gatheringState READ gatheringState NOTIFY gatheringStateChanged) public: + /// + /// This enum describes the gathering state of the ICE connection. + /// + /// \since QXmpp 0.9.3 + /// enum GatheringState { NewGatheringState, BusyGatheringState, @@ -277,8 +287,12 @@ public: bool isConnected() const; // documentation needs to be here, see https://stackoverflow.com/questions/49192523/ + /// /// Returns the ICE gathering state, that is the discovery of local /// candidates. + /// + /// \since QXmpp 0.9.3 + /// GatheringState gatheringState() const; Q_SIGNALS: @@ -288,7 +302,11 @@ Q_SIGNALS: /// \brief This signal is emitted when ICE negotiation fails. void disconnected(); + /// /// \brief This signal is emitted when the gathering state of local candidates changes. + /// + /// \since QXmpp 0.9.3 + /// void gatheringStateChanged(); /// \brief This signal is emitted when the list of local candidates changes. |
