summaryrefslogtreecommitdiffstats
blob: f8c963c3d1e21c3c8b0233bbd47901ca8e2231bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2012 Yoann Blein
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <Swiften/ScreenSharing/ScreenSharingManager.h>

namespace Swift {
	class DummyScreenSharingManager : public ScreenSharingManager {
		public:
			DummyScreenSharingManager() : ScreenSharingManager() {}

			virtual boost::shared_ptr<OutgoingScreenSharing> createOutgoingScreenSharing(const JID& to) {
				return boost::shared_ptr<OutgoingScreenSharing>();
			}

			virtual void handleInputEvent(const JID& from, boost::shared_ptr<InputEventPayload> payload) {}
	};
}