class WXDLLIMPEXP_NET wxURL : public wxURI
{
public:
- wxURL(const wxString& sUrl);
+ wxURL(const wxString& sUrl = wxEmptyString);
wxURL(const wxURI& url);
virtual ~wxURL();
wxURLError GetError() const { return m_error; }
wxString GetURL() const { return m_url; }
+ wxURLError SetURL(const wxString &url)
+ { *this = url; return m_error; }
+
+ bool IsOk() const
+ { return m_error == wxURL_NOERR; }
+
wxInputStream *GetInputStream();
#if wxUSE_PROTOCOL_HTTP