summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/ScreenSharingManagerImpl.h')
-rw-r--r--Swiften/ScreenSharing/ScreenSharingManagerImpl.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/Swiften/ScreenSharing/ScreenSharingManagerImpl.h b/Swiften/ScreenSharing/ScreenSharingManagerImpl.h
index 8e8ea78..8f73f87 100644
--- a/Swiften/ScreenSharing/ScreenSharingManagerImpl.h
+++ b/Swiften/ScreenSharing/ScreenSharingManagerImpl.h
@@ -18,6 +18,8 @@ namespace Swift {
class TimerFactory;
class PresenceOracle;
class EntityCapsProvider;
+ class InputEventResponder;
+ class InputEventPayload;
class ScreenSharingManagerImpl : public ScreenSharingManager {
public:
@@ -28,19 +30,18 @@ namespace Swift {
virtual boost::shared_ptr<OutgoingScreenSharing> createOutgoingScreenSharing(const JID& to);
+ virtual void handleInputEvent(const JID& from, boost::shared_ptr<InputEventPayload> payload);
+
private:
boost::optional<JID> highestPriorityJIDSupportingScreenSharing(const JID &bareJID);
private:
IncomingScreenSharingManager* incomingSSManager;
OutgoingScreenSharingManager* outgoingSSManager;
-
+ InputEventResponder* responder;
JID ownJID;
+ std::vector< boost::shared_ptr<OutgoingScreenSharing> > outgoingSharings;
-// JingleSessionManager* jingleSM;
-// IQRouter* iqRouter;
-// BoostUDPSocketFactory* udpSocketFactory;
-// TimerFactory* timerFactory;
EntityCapsProvider* capsProvider;
PresenceOracle* presenceOracle;
};