#ifndef ICESPIDER_IHTTPREQUEST_H #define ICESPIDER_IHTTPREQUEST_H #include #include #include #include namespace IceSpider { class DLL_PUBLIC IHttpRequest { public: Ice::Context getContext() const; template T getURLParam(const std::string & key) const { (void)key; return T(); } template T getBodyParam(const std::string & key) const { (void)key; return T(); } template T getQueryStringParam(const std::string & key) const { (void)key; return T(); } template T getHeaderParam(const std::string & key) const { (void)key; return T(); } }; } #endif