00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef _WX_XMLENCODE_H_
00013 #define _WX_XMLENCODE_H_
00014
00015 #include <wx/txtstrm.h>
00016
00017
00018
00019
00020 #if wxUSE_UNICODE
00021 A2DGENERALDLLEXP wxString XmlDecodeStringToString(
00022 const char* s,
00023 size_t len = wxString::npos
00024 );
00025 #else
00026 A2DGENERALDLLEXP wxString XmlDecodeStringToString(
00027 const char* s,
00028 size_t len = wxString::npos
00029 );
00030 #endif // wxUSE_UNICODE
00031
00032 #endif