summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/OutgoingScreenSharingManager.h')
-rw-r--r--Swiften/ScreenSharing/OutgoingScreenSharingManager.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/ScreenSharing/OutgoingScreenSharingManager.h b/Swiften/ScreenSharing/OutgoingScreenSharingManager.h
index 56888ba..7c16294 100644
--- a/Swiften/ScreenSharing/OutgoingScreenSharingManager.h
+++ b/Swiften/ScreenSharing/OutgoingScreenSharingManager.h
@@ -16,11 +16,12 @@ namespace Swift {
class IQRouter;
class UDPSocketFactory;
class TimerFactory;
+ class ConnectivityManager;
class OutgoingScreenSharingManager {
public:
OutgoingScreenSharingManager(JingleSessionManager* jingleSessionManager, IQRouter* router,
- UDPSocketFactory* udpSocketFactory, TimerFactory* timerFactory);
+ UDPSocketFactory* udpSocketFactory, ConnectivityManager* connectivityManager, TimerFactory* timerFactory);
boost::shared_ptr<OutgoingScreenSharing> createOutgoingScreenSharing(const JID& from, const JID& recipient);
@@ -29,6 +30,7 @@ namespace Swift {
JingleSessionManager* jsManager;
IQRouter* iqRouter;
+ ConnectivityManager* connectivityManager;
UDPSocketFactory *udpSocketFactory;
TimerFactory* timerFactory;
};