X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4cc4bfafe5a31cb96f35b3ec9b19fa2b0b3a4eef..dae2800ac82493e2f3cae2ce0231309a8e877683:/interface/protocol/http.h?ds=sidebyside diff --git a/interface/protocol/http.h b/interface/protocol/http.h index 0a14fab982..9ea510b233 100644 --- a/interface/protocol/http.h +++ b/interface/protocol/http.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: protocol/http.h -// Purpose: documentation for wxHTTP class +// Purpose: interface of wxHTTP // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -14,8 +14,7 @@ @library{wxnet} @category{net} - @seealso - wxSocketBase, wxURL + @see wxSocketBase, wxURL */ class wxHTTP : public wxProtocol { @@ -53,7 +52,7 @@ public: Returns the HTTP response code returned by the server. Please refer to RFC 2616 for the list of responses. */ - int GetResponse(); + int GetResponse() const; /** It sets data of a field to be sent during the next request to the HTTP server. @@ -63,3 +62,4 @@ public: */ void SetHeader(const wxString& header, const wxString& h_data); }; +