00001 #ifndef _IT_BUS_PDK_URL_ENCODING_H_
00002 #define _IT_BUS_PDK_URL_ENCODING_H_
00003
00004
00005
00006
00007 #include <it_bus/types.h>
00008
00009 namespace IT_Bus
00010 {
00011 class IT_AFC_API UrlEncoding
00012 {
00013 public:
00014
00015 static void
00016 encode(
00017 String& encoded,
00018 const String& decoded
00019 );
00020
00021 static void
00022 decode(
00023 const String& encoded,
00024 String& decoded
00025 );
00026
00027 private:
00028
00029
00030 UrlEncoding();
00031 };
00032 }
00033
00034 #endif