/* * Copyright (c) 2010 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include #include namespace Swift { BoostConnectionFactory::BoostConnectionFactory(boost::shared_ptr ioService, EventLoop* eventLoop) : ioService(ioService), eventLoop(eventLoop) { } boost::shared_ptr BoostConnectionFactory::createConnection() { return BoostConnection::create(ioService, eventLoop); } }