/////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) // // See accompanying file COPYING.TXT file for licensing details. // /////////////////////////////////////////////////////////////////////////////// #ifndef CPPCMS_IMPL_HTTP_API_H #define CPPCMS_IMPL_HTTP_API_H #include #include #include namespace cppcms { class service; namespace impl { namespace cgi { class acceptor; std::auto_ptr http_api_factory(cppcms::service &srv,std::string ip,int port,int backlog); } // cgi } // impl } // cppcms #endif