diff options
Diffstat (limited to 'icespider/testing/testRequest.h')
-rw-r--r-- | icespider/testing/testRequest.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/icespider/testing/testRequest.h b/icespider/testing/testRequest.h index 9e510db..aa0ed67 100644 --- a/icespider/testing/testRequest.h +++ b/icespider/testing/testRequest.h @@ -18,10 +18,10 @@ namespace IceSpider { OptionalString getQueryStringParam(const std::string & key) const override; OptionalString getCookieParam(const std::string & key) const override; OptionalString getHeaderParam(const std::string & key) const override; - void setQueryStringParam(const std::string &, const OptionalString &) override; - void setHeaderParam(const std::string &, const OptionalString &) override; - void setCookieParam(const std::string &, const OptionalString &) override; - void setEnv(const std::string &, const OptionalString &) override; + void setQueryStringParam(const std::string &, const OptionalString &); + void setHeaderParam(const std::string &, const OptionalString &); + void setCookieParam(const std::string &, const OptionalString &); + void setEnv(const std::string &, const OptionalString &); std::istream & getInputStream() const override; std::ostream & getOutputStream() const override; void response(short statusCode, const std::string & statusMsg) const override; |