use wxOVERRIDE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -25,13 +25,13 @@ public:
|
||||
virtual ~wxHTTP();
|
||||
|
||||
virtual bool Connect(const wxString& host, unsigned short port);
|
||||
virtual bool Connect(const wxString& host) { return Connect(host, 0); }
|
||||
virtual bool Connect(const wxSockAddress& addr, bool wait);
|
||||
bool Abort();
|
||||
virtual bool Connect(const wxString& host) wxOVERRIDE { return Connect(host, 0); }
|
||||
virtual bool Connect(const wxSockAddress& addr, bool wait) wxOVERRIDE;
|
||||
bool Abort() wxOVERRIDE;
|
||||
|
||||
wxInputStream *GetInputStream(const wxString& path);
|
||||
wxInputStream *GetInputStream(const wxString& path) wxOVERRIDE;
|
||||
|
||||
wxString GetContentType() const;
|
||||
wxString GetContentType() const wxOVERRIDE;
|
||||
wxString GetHeader(const wxString& header) const;
|
||||
int GetResponse() const { return m_http_response; }
|
||||
|
||||
|
Reference in New Issue
Block a user