/* * 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/ScreenSharing/ScreenSharingOverview.h" namespace Swift { class DummyScreenSharingOverview : public ScreenSharingOverview { public: virtual ~DummyScreenSharingOverview() {} virtual void createOugoingScreenSharing(const JID& /*to*/) {} }; }