diff options
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 {}; } |
