diff options
author | dknn <yoann.blein@free.fr> | 2012-08-17 15:32:43 (GMT) |
---|---|---|
committer | dknn <yoann.blein@free.fr> | 2012-09-22 09:34:49 (GMT) |
commit | 6247ed394302ff2cf1f33a71df808bebf7241242 (patch) | |
tree | d4d61fb5e66611ecdc75cf1149b64e23fef2b077 /Swift/Controllers/ScreenSharing/UnitTest | |
parent | c8ced8597ab28b928862d21554c0a68c238b1165 (diff) | |
download | swift-contrib-6247ed394302ff2cf1f33a71df808bebf7241242.zip swift-contrib-6247ed394302ff2cf1f33a71df808bebf7241242.tar.bz2 |
Fix test suite compliance
Diffstat (limited to 'Swift/Controllers/ScreenSharing/UnitTest')
-rw-r--r-- | Swift/Controllers/ScreenSharing/UnitTest/DummyScreenSharingOverview.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Swift/Controllers/ScreenSharing/UnitTest/DummyScreenSharingOverview.h b/Swift/Controllers/ScreenSharing/UnitTest/DummyScreenSharingOverview.h new file mode 100644 index 0000000..8ea4d68 --- /dev/null +++ b/Swift/Controllers/ScreenSharing/UnitTest/DummyScreenSharingOverview.h @@ -0,0 +1,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*/) {} + }; +} |