/* * Copyright (c) 2012 Yoann Blein * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include namespace Swift { class DummyScreenSharingManager : public ScreenSharingManager { public: DummyScreenSharingManager() : ScreenSharingManager() {} virtual boost::shared_ptr createOutgoingScreenSharing(const JID& to) { return boost::shared_ptr(); } virtual void handleInputEvent(const JID& from, boost::shared_ptr payload) {} }; }