ifacecheck fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56549 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-28 14:29:36 +00:00
parent 9e570f836b
commit cfbe561401
9 changed files with 82 additions and 98 deletions

View File

@@ -67,13 +67,15 @@ public:
Creates an empty URI.
*/
wxURI();
/**
Constructor for quick creation.
@param uri
URI (Uniform Resource Identifier) to initialize with.
*/
wxURI(const wxChar* uri);
wxURI(const wxString& uri);
/**
Copies this URI from another URI.
@@ -104,13 +106,12 @@ public:
/**
Creates this URI from the @a uri string.
Returns the position at which parsing stopped (there is no such thing
as an "invalid" wxURI).
Returns @true if this instance was correctly initialized.
@param uri
String to initialize from.
*/
const wxChar* Create(const wxString uri);
bool Create(const wxString& uri);
/**
Obtains the fragment of this URI.
@@ -125,7 +126,7 @@ public:
/**
Obtains the host type of this URI, which is one of wxURIHostType.
*/
const wxURIHostType& GetHostType() const;
wxURIHostType GetHostType() const;
/**
Returns the password part of the userinfo component of this URI. Note
@@ -134,7 +135,7 @@ public:
@c "http://<user>:<password>@mysite.com/mypath"
*/
const wxString& GetPassword() const;
wxString GetPassword() const;
/**
Returns the (normalized) path of the URI.
@@ -199,7 +200,7 @@ public:
@c "http://<user>:<password>@mysite.com/mypath"
*/
const wxString& GetUser() const;
wxString GetUser() const;
/**
Returns the UserInfo component of the URI.
@@ -293,6 +294,6 @@ public:
@param uricomp
URI to compare to.
*/
void operator ==(const wxURI& uricomp);
bool operator==(const wxURI& uricomp) const;
};