/* * 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 ScreenSharingController; class JID; class ScreenSharingOverview { public: virtual ~ScreenSharingOverview() {} virtual void createOugoingScreenSharing(const JID& to) = 0; public: boost::signal onNewScreenSharingController; }; }