URI.h

00001 // $Id: URI.h 21 2010-09-05 04:18:17Z cschwarz1 $
00002 
00003 #ifndef BASE_URI_H
00004 #define BASE_URI_H
00005 
00006 #include "String.h"
00007 
00008 namespace base {
00010 
00014     class PPBASE_EXPORT URI {
00015     public:
00017 
00022         static String decode(const String &str, bool plustospace = false);
00023 
00025 
00029         static String encode(const String &str);
00030 
00032 
00038         static String reverse(const String &uri);
00039     };
00040 }
00041 
00042 #endif