diff options
| author | Linus Jahn <lnj@kaidan.im> | 2021-08-23 16:59:37 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2021-08-23 16:59:37 +0200 |
| commit | 1fff70198f4404ac7433bad3743c8a12e79fe4a0 (patch) | |
| tree | 3e18113b7956e26b3d4a62d59dbdc58a68d20536 /src/base | |
| parent | 73a506579a9dcd945bf71fde184a28fb31a50d5c (diff) | |
| download | qxmpp-1fff70198f4404ac7433bad3743c8a12e79fe4a0.tar.gz | |
QXmppGlobal: Add missing \since tags
Diffstat (limited to 'src/base')
| -rw-r--r-- | src/base/QXmppGlobal.h.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/base/QXmppGlobal.h.in b/src/base/QXmppGlobal.h.in index 78b11fec..b285a35e 100644 --- a/src/base/QXmppGlobal.h.in +++ b/src/base/QXmppGlobal.h.in @@ -84,12 +84,16 @@ inline QLatin1String QXmppVersion() /// /// Contains global functions and enumerations. /// +/// \since QXmpp 1.5 +/// namespace QXmpp { /// /// The state of an outgoing packet. /// -enum PacketState : quint8 { +/// \since QXmpp 1.5 +/// +enum PacketState : uint8_t { Sent, ///< The packet has been written to the socket. Acknowledged, ///< The packet has been acknowledged by the other peer using Stream Management. NotSent, ///< The packet could not be sent (e.g. connection broke or user disconnected). @@ -98,6 +102,8 @@ enum PacketState : quint8 { /// /// An empty struct indicating success in results. /// +/// \since QXmpp 1.5 +/// struct Success {}; } |
