diff options
Diffstat (limited to 'Swiften/StreamStack/TLSLayerFactory.h')
-rw-r--r-- | Swiften/StreamStack/TLSLayerFactory.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Swiften/StreamStack/TLSLayerFactory.h b/Swiften/StreamStack/TLSLayerFactory.h new file mode 100644 index 0000000..1b0bfc1 --- /dev/null +++ b/Swiften/StreamStack/TLSLayerFactory.h @@ -0,0 +1,15 @@ +#pragma once + +#include <boost/shared_ptr.hpp> + +namespace Swift { + class TLSLayer; + + class TLSLayerFactory { + public: + virtual ~TLSLayerFactory(); + virtual bool canCreate() const = 0; + + virtual boost::shared_ptr<TLSLayer> createTLSLayer() = 0; + }; +} |