00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 #ifndef _UNICODE_STRING_H_ 00022 #define _UNICODE_STRING_H_ 00023 00024 #include <string> 00025 00026 namespace TestFrameWork 00027 { 00028 00029 std::string ConvertUTF16ToUTF8(const std::wstring& utf16String); 00030 00031 std::wstring ConvertUTF8ToUTF16(const std::string& utf8String); 00032 00033 } 00034 00035 #endif
1.6.2