Skip to content

Commit

Permalink
Update documentation. Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakercp committed Feb 12, 2016
1 parent fbcc1de commit 2c1e399
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions libs/ofxHTTP/include/ofx/HTTP/AbstractServerTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,6 @@ class AbstractHTTPRequestHandler:
{
}

/// \brief Handle an HTTPServerRequest with an HTTPServerResponse.
/// \param request The HTTPServerRequest to handle.
/// \param response The HTTPServerResponse to return.
/// \note Redeclared here for documentation puposes.
virtual void handleRequest(Poco::Net::HTTPServerRequest& request,
Poco::Net::HTTPServerResponse& response) = 0;

};


Expand Down Expand Up @@ -187,7 +180,7 @@ class AbstractSessionStore
/// \param sessionId The id of the session to query.
virtual bool hasSession(const std::string& sessionId) const = 0;

/// \brief Get a session
/// \brief Get a session by \p sesssionId.
/// \param sessionId The id of the session to get.
/// \throws Poco::InvalidAccessException if no session is found.
virtual AbstractSession& getSession(const std::string& sessionId) = 0;
Expand Down

0 comments on commit 2c1e399

Please sign in to comment.