From 63c5f358e696298950dd03db431b92d4decd015a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 31 Jul 2009 07:50:54 +0000 Subject: Added a character based splitting function to FBasicString and made more of the parsing functions publicly accessible in Url, and added some more helpers. --- src/url.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/url.cpp') diff --git a/src/url.cpp b/src/url.cpp index 251e678..7f03043 100644 --- a/src/url.cpp +++ b/src/url.cpp @@ -154,6 +154,12 @@ void Bu::Url::parseHost( Bu::FString::const_iterator &i ) i = s; } +void Bu::Url::parsePath( const Bu::FString &sPath ) +{ + Bu::FString::const_iterator i = sPath.begin(); + parsePath( i ); +} + void Bu::Url::parsePath( Bu::FString::const_iterator &i ) { if( i ) -- cgit v1.2.3