summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/ScreenSharing/UnitTest/DummyScreenSharingOverview.h')
-rw-r--r--Swift/Controllers/ScreenSharing/UnitTest/DummyScreenSharingOverview.h18
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*/) {}
+ };
+}