summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/ScreenSharing.h')
-rw-r--r--Swiften/ScreenSharing/ScreenSharing.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/ScreenSharing/ScreenSharing.h b/Swiften/ScreenSharing/ScreenSharing.h
index 6107ec5..9a74c16 100644
--- a/Swiften/ScreenSharing/ScreenSharing.h
+++ b/Swiften/ScreenSharing/ScreenSharing.h
@@ -18,6 +18,7 @@ namespace Swift {
class UDPSocketFactory;
class UDPSocket;
class RTPSession;
+ class ConnectivityManager;
class ScreenSharing {
public:
@@ -36,7 +37,7 @@ namespace Swift {
};
public:
- ScreenSharing(boost::shared_ptr<JingleSession> jingleSession, UDPSocketFactory* udpSocketFactory);
+ ScreenSharing(boost::shared_ptr<JingleSession> jingleSession, UDPSocketFactory* udpSocketFactory, ConnectivityManager* connectivityManager);
virtual ~ScreenSharing();
virtual void cancel() = 0;
@@ -58,5 +59,6 @@ namespace Swift {
boost::shared_ptr<JingleSession> jingleSession;
UDPSocketFactory* udpSocketFactory;
+ ConnectivityManager* connectivityManager;
};
}