aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppCallManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/QXmppCallManager.h')
-rw-r--r--src/client/QXmppCallManager.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/client/QXmppCallManager.h b/src/client/QXmppCallManager.h
index 78cafe5b..98579601 100644
--- a/src/client/QXmppCallManager.h
+++ b/src/client/QXmppCallManager.h
@@ -79,14 +79,27 @@ public:
~QXmppCall() override;
+ // documentation needs to be here, see https://stackoverflow.com/questions/49192523/
+ /// Returns the call's direction.
QXmppCall::Direction direction() const;
+ /// Returns the remote party's JID.
QString jid() const;
- QString sid() const;
+ ///
+ /// Returns the call's state.
+ ///
+ /// \sa stateChanged()
+ ///
QXmppCall::State state() const;
+ QString sid() const;
+
QXmppRtpAudioChannel *audioChannel() const;
- QIODevice::OpenMode audioMode() const;
QXmppRtpVideoChannel *videoChannel() const;
+
+ // documentation needs to be here, see https://stackoverflow.com/questions/49192523/
+ /// Returns the audio mode.
+ QIODevice::OpenMode audioMode() const;
+ /// Returns the video mode.
QIODevice::OpenMode videoMode() const;
signals: