aboutsummaryrefslogtreecommitdiff
path: root/examples/example_4_callHandling/xmppClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example_4_callHandling/xmppClient.h')
-rw-r--r--examples/example_4_callHandling/xmppClient.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/example_4_callHandling/xmppClient.h b/examples/example_4_callHandling/xmppClient.h
index 6733164b..bc097430 100644
--- a/examples/example_4_callHandling/xmppClient.h
+++ b/examples/example_4_callHandling/xmppClient.h
@@ -25,11 +25,9 @@
#ifndef XMPPCLIENT_H
#define XMPPCLIENT_H
+#include "QXmppCallManager.h"
#include "QXmppClient.h"
-class QXmppCall;
-class QXmppCallManager;
-
class xmppClient : public QXmppClient
{
Q_OBJECT
@@ -38,9 +36,9 @@ public:
xmppClient(QObject *parent = 0);
private slots:
+ void slotAudioModeChanged(QIODevice::OpenMode mode);
void slotCallReceived(QXmppCall *call);
- void slotConnected();
- void slotFinished();
+ void slotCallStateChanged(QXmppCall::State state);
void slotPresenceReceived(const QXmppPresence &presence);
private: