diff options
| author | Linus Jahn <lnj@kaidan.im> | 2022-12-28 19:18:02 +0100 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2022-12-28 19:18:02 +0100 |
| commit | 1d026652c0e6d44c9f947490514163aba09664b2 (patch) | |
| tree | 97ab250d143b13e1e81ca9908efc7c083e116f17 /src/client/QXmppPubSubManager.cpp | |
| parent | edc630df76c916a3639704fe3898782dc6516c3d (diff) | |
| download | qxmpp-1d026652c0e6d44c9f947490514163aba09664b2.tar.gz | |
PubSubManager: Make requestFeatures() API private
This kind of task should be done by the DiscoveryManager. For now we
still need it, but I don't want to make it official API.
Diffstat (limited to 'src/client/QXmppPubSubManager.cpp')
| -rw-r--r-- | src/client/QXmppPubSubManager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/QXmppPubSubManager.cpp b/src/client/QXmppPubSubManager.cpp index 07dbff35..9b416a26 100644 --- a/src/client/QXmppPubSubManager.cpp +++ b/src/client/QXmppPubSubManager.cpp @@ -196,6 +196,7 @@ QXmppPubSubManager::~QXmppPubSubManager() { } +/// \cond /// /// Requests all features of a pubsub service and checks the identities via service discovery. /// @@ -247,6 +248,7 @@ QFuture<QXmppPubSubManager::FeaturesResult> QXmppPubSubManager::requestFeatures( return InvalidServiceType(); }); } +/// \endcond /// /// Requests all listed nodes of a pubsub service via service discovery. @@ -759,6 +761,7 @@ QFuture<QXmppPubSubManager::Result> QXmppPubSubManager::unsubscribeFromNode(cons return client()->sendGenericIq(std::move(request)); } +/// \cond /// /// \fn QXmppPubSubManager::requestPepFeatures() /// @@ -769,6 +772,7 @@ QFuture<QXmppPubSubManager::Result> QXmppPubSubManager::unsubscribeFromNode(cons /// /// \warning THIS API IS NOT FINALIZED YET! /// +/// \endcond /// /// |
