summaryrefslogtreecommitdiffstats
blob: 6c343b0698dfa2c21d835941d86ce6cedf9b9998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "Swiften/StreamStack/TLSLayerFactory.h"

namespace Swift {
	class PlatformTLSLayerFactory : public TLSLayerFactory {
		public:
			PlatformTLSLayerFactory();

			bool canCreate() const;
			virtual boost::shared_ptr<TLSLayer> createTLSLayer();
	};
}