aboutsummaryrefslogtreecommitdiff
path: root/src/url.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-07-31 07:50:54 +0000
committerMike Buland <eichlan@xagasoft.com>2009-07-31 07:50:54 +0000
commit63c5f358e696298950dd03db431b92d4decd015a (patch)
tree5c8db031d9de4ca008a6affda076b6de8f089b29 /src/url.h
parent745a9ec043fdbe91faf26a3cfec4ecd12355f94a (diff)
downloadlibbu++-63c5f358e696298950dd03db431b92d4decd015a.tar.gz
libbu++-63c5f358e696298950dd03db431b92d4decd015a.tar.bz2
libbu++-63c5f358e696298950dd03db431b92d4decd015a.tar.xz
libbu++-63c5f358e696298950dd03db431b92d4decd015a.zip
Added a character based splitting function to FBasicString and made more of the
parsing functions publicly accessible in Url, and added some more helpers.
Diffstat (limited to 'src/url.h')
-rw-r--r--src/url.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/url.h b/src/url.h
index cf1210b..88d128b 100644
--- a/src/url.h
+++ b/src/url.h
@@ -28,6 +28,8 @@ namespace Bu
28 void parseUrl( const Bu::FString &sUrl ); 28 void parseUrl( const Bu::FString &sUrl );
29 void parseParams( const Bu::FString &sQuery ); 29 void parseParams( const Bu::FString &sQuery );
30 void parseParams( Bu::FString::const_iterator &i ); 30 void parseParams( Bu::FString::const_iterator &i );
31 void parsePath( const Bu::FString &sPath );
32 void parsePath( Bu::FString::const_iterator &i );
31 void clear(); 33 void clear();
32 34
33 Bu::FString getUrl() const; 35 Bu::FString getUrl() const;
@@ -59,7 +61,6 @@ namespace Bu
59 void parseProtocol( Bu::FString::const_iterator &i ); 61 void parseProtocol( Bu::FString::const_iterator &i );
60 void parseUserPass( Bu::FString::const_iterator &i ); 62 void parseUserPass( Bu::FString::const_iterator &i );
61 void parseHost( Bu::FString::const_iterator &i ); 63 void parseHost( Bu::FString::const_iterator &i );
62 void parsePath( Bu::FString::const_iterator &i );
63 64
64 private: 65 private:
65 Bu::FString sProtocol; 66 Bu::FString sProtocol;