blob: 8ea4d683fdfe09ef388ce8945bb05d05eb47b4aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* 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*/) {}
};
}
|