summaryrefslogtreecommitdiffstats
blob: fba9acc9b29f7590d979ddc4250c0df14e4896b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) 2011-2015 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <Swiften/Base/API.h>
#include <Swiften/Jingle/JingleSession.h>

namespace Swift {
	class SWIFTEN_API IncomingJingleSessionHandler {
		public:
			virtual ~IncomingJingleSessionHandler();

			virtual bool handleIncomingJingleSession(JingleSession::ref, const std::vector<JingleContentPayload::ref>& contents, const JID& recipient) = 0;
	};
}