/////////////////////////////////////////////////////////////////////////////
-// Name: url.h
+// Name: wx/url.h
// Purpose: URL parser
// Author: Guilhem Lavaux
// Modified by: Ryan Norton
{
public:
wxURL(const wxString& sUrl = wxEmptyString);
- wxURL(const wxURI& url);
+ wxURL(const wxURI& uri);
+ wxURL(const wxURL& url);
virtual ~wxURL();
wxURL& operator = (const wxString& url);
- wxURL& operator = (const wxURI& url);
+ wxURL& operator = (const wxURI& uri);
+ wxURL& operator = (const wxURL& url);
wxProtocol& GetProtocol() { return *m_protocol; }
wxURLError GetError() const { return m_error; }
void Init(const wxString&);
bool ParseURL();
void CleanData();
+ void Free();
bool FetchProtocol();
friend class wxProtoInfo;