blob: f7f9acccae33e6f2deaca32a8e7c901182721ba1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | /*
 * Copyright (c) 2013 Remko Tronçon
 * Licensed under the GNU General Public License.
 * See the COPYING file for more information.
 */
#pragma once
#include <string>
#include <Swiften/Base/API.h>
namespace Swift {
	class JID;
	class FileTransferTransporter;
	class SWIFTEN_API FileTransferTransporterFactory {
		public:
			virtual ~FileTransferTransporterFactory();
			virtual FileTransferTransporter* createInitiatorTransporter(
					const JID& initiator, 
					const JID& responder) = 0;
			virtual FileTransferTransporter* createResponderTransporter(
					const JID& initiator, 
					const JID& responder, 
					const std::string& s5bSessionID) = 0;
	};
}
 |