/*
 * Copyright (c) 2010 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

namespace Swift {
	class TLSContext;

	class TLSContextFactory {
		public:
			virtual ~TLSContextFactory();

			virtual bool canCreate() const = 0;

			virtual TLSContext* createTLSContext() = 0;
			virtual void setCheckCertificateRevocation(bool b) = 0;
	};
}