This documentation is archived and is not being maintained.
ctype::do_widen
Visual Studio 2010
A virtual function called to converts a character of type char in the native character set to the corresponding character of type CharType used by a locale.
virtual CharType do_widen(
char byte
) const;
virtual const char *do_widen(
const char* first,
const char* last,
CharType* dest
) const;
The first protected member function returns the character of type CharType that corresponds to the parameter character of native type char.
The second protected member function returns a pointer to the destination range of characters of type CharType used by a locale converted from native characters of type char.
Show: