/* * Copyright (c) 2011 Jan Kaluza * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ /* * Copyright (c) 2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include namespace Swift { class ConnectionServer; class SWIFTEN_API BoostConnectionServerFactory : public ConnectionServerFactory { public: BoostConnectionServerFactory(boost::shared_ptr, EventLoop* eventLoop); virtual boost::shared_ptr createConnectionServer(int port); virtual boost::shared_ptr createConnectionServer(const Swift::HostAddress &hostAddress, int port); private: boost::shared_ptr ioService; EventLoop* eventLoop; }; }