/* * Copyright (c) 2012 Yoann Blein * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include "Swift/Controllers/UIInterfaces/RemoteScreenWindow.h" #include namespace Swift { class IncomingScreenSharing; class RemoteScreenWindowFactory { public: virtual ~RemoteScreenWindowFactory() {} virtual RemoteScreenWindow* createRemoteScreenViewer(boost::shared_ptr iss) = 0; }; }