diff options
Diffstat (limited to 'Swiften/Network/ConnectionServerFactory.h')
-rw-r--r-- | Swiften/Network/ConnectionServerFactory.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Swiften/Network/ConnectionServerFactory.h b/Swiften/Network/ConnectionServerFactory.h new file mode 100644 index 0000000..df5f912 --- /dev/null +++ b/Swiften/Network/ConnectionServerFactory.h @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2011 Jan Kaluza + * Licensed under the Simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +#pragma once + +#include <boost/shared_ptr.hpp> + +namespace Swift { + class ConnectionServer; + class HostAddress; + + class ConnectionServerFactory { + public: + virtual ~ConnectionServerFactory(); + + virtual boost::shared_ptr<ConnectionServer> createConnectionServer(int port) = 0; + + virtual boost::shared_ptr<ConnectionServer> createConnectionServer(const Swift::HostAddress& hostAddress, int port) = 0; + }; +} |