summaryrefslogtreecommitdiffstats
blob: b4218a51fc970e0a3b032ce75c70d5be87c6280d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SWIFTEN_TLSLayerFactory_H
#define SWIFTEN_TLSLayerFactory_H

namespace Swift {
	class TLSLayer;

	class TLSLayerFactory {
		public:
			virtual ~TLSLayerFactory();
			virtual bool canCreate() const = 0;

			virtual TLSLayer* createTLSLayer() = 0;
	};
}

#endif