/////////////////////////////////////////////////////////////////////////////
// Name: protocol/http.h
-// Purpose: documentation for wxHTTP class
+// Purpose: interface of wxHTTP
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxnet}
@category{net}
- @seealso
- wxSocketBase, wxURL
+ @see wxSocketBase, wxURL
*/
class wxHTTP : public wxProtocol
{
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.
*/
void SetHeader(const wxString& header, const wxString& h_data);
};
+