1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include "irouteHandler.h" #include "core.h" #include <plugins.impl.h> INSTANTIATEPLUGINOF(IceSpider::IRouteHandler); namespace IceSpider { IRouteHandler::IRouteHandler(HttpMethod m, const std::string & p) : Path(p), method(m) { } Ice::ObjectPrx IRouteHandler::getProxy(IHttpRequest * request, const char * type) const { return request->core->getProxy(type); } }