| 287 | |
| 288 | |
| 289 | TSTRING cNonNarrowableCharEncoder::EncodeRoundtrip(TSTRING::const_iterator first, TSTRING::const_iterator last) const |
| 290 | { |
| 291 | TSTRING str; |
| 292 | |
| 293 | str += char_escape; |
| 294 | str += char_identifier; |
| 295 | str += cCharEncoderUtil::CharStringToHexValue(TSTRING(first, last)); |
| 296 | |
| 297 | return str; |
| 298 | } |
| 299 | |
| 300 | |
| 301 | TSTRING cNonPrintableCharEncoder::EncodeRoundtrip(TSTRING::const_iterator first, TSTRING::const_iterator last) const |