/* * Copyright (c) 2012 Yoann Blein * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include #include namespace Swift { class IncomingScreenSharing; class Image; class RemoteScreenWindow { public: RemoteScreenWindow(boost::shared_ptr incScreenSharing) : iss(incScreenSharing) {} virtual ~RemoteScreenWindow() {} public: boost::signal onStopRequest; protected: boost::shared_ptr iss; }; }