]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/url.h
The object size page now has full position attribute editing.
[wxWidgets.git] / include / wx / url.h
index c74abf302c537755bb8e1dce7ebd38947ca4bafe..171efe8562da260be61f87b583a43c6e48c04130 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        url.h
+// Name:        wx/url.h
 // Purpose:     URL parser
 // Author:      Guilhem Lavaux
 // Modified by: Ryan Norton
@@ -48,11 +48,13 @@ class WXDLLIMPEXP_NET wxURL : public wxURI
 {
 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; }
@@ -99,6 +101,7 @@ protected:
     void Init(const wxString&);
     bool ParseURL();
     void CleanData();
+    void Free();
     bool FetchProtocol();
 
     friend class wxProtoInfo;