1
0
Fork 0

removed virtual declarations

This commit is contained in:
Jan Steemann 2015-05-11 22:58:45 +02:00
parent 6e7332afce
commit 40eaea7154
1 changed files with 8 additions and 8 deletions

View File

@ -159,31 +159,31 @@ namespace triagens {
/// @brief returns header and body size restrictions /// @brief returns header and body size restrictions
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
virtual size_restriction_t sizeRestrictions () const; size_restriction_t sizeRestrictions () const;
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief authenticates a new request, wrapper method /// @brief authenticates a new request, wrapper method
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
virtual HttpResponse::HttpResponseCode authenticateRequest (HttpRequest*); HttpResponse::HttpResponseCode authenticateRequest (HttpRequest*);
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief set request context, wrapper method /// @brief set request context, wrapper method
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
virtual bool setRequestContext (HttpRequest*); bool setRequestContext (HttpRequest*);
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief returns the authentication realm /// @brief returns the authentication realm
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
virtual std::string authenticationRealm (HttpRequest*) const; std::string authenticationRealm (HttpRequest*) const;
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief creates a new request /// @brief creates a new request
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
virtual HttpRequest* createRequest (ConnectionInfo const&, HttpRequest* createRequest (ConnectionInfo const&,
char const*, char const*,
size_t); size_t);
@ -191,7 +191,7 @@ namespace triagens {
/// @brief creates a new handler /// @brief creates a new handler
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
virtual HttpHandler* createHandler (HttpRequest*); HttpHandler* createHandler (HttpRequest*);
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief adds a path and constructor to the factory /// @brief adds a path and constructor to the factory