ACE
6.4.2
|
A lightweight char* to wchar* string conversion class. More...
#include <ace_wchar.h>
Public Member Functions | |
ACE_Ascii_To_Wide (const char *s) | |
Constructor must take a wchar string. More... | |
~ACE_Ascii_To_Wide (void) | |
Destructor will free up the memory. More... | |
wchar_t * | wchar_rep (void) |
Return the internal wchar* representation. More... | |
Static Public Member Functions | |
static wchar_t * | convert (const char *str) |
Converts an char string to unicode/wide and returns a new string. More... | |
Private Member Functions | |
ACE_Ascii_To_Wide (void) | |
Disallow these operation. More... | |
ACE_Ascii_To_Wide (ACE_Ascii_To_Wide &) | |
ACE_Ascii_To_Wide | operator= (ACE_Ascii_To_Wide &) |
Private Attributes | |
wchar_t * | s_ |
Internal pointer to the converted string. More... | |
A lightweight char* to wchar* string conversion class.
The purpose of this class is to perform conversion from char* to wchar* strings. It is not intended for general purpose use.
|
inline |
Constructor must take a wchar string.
|
inline |
Destructor will free up the memory.
|
private |
Disallow these operation.
|
private |
|
inlinestatic |
Converts an char string to unicode/wide and returns a new string.
|
private |
|
inline |
Return the internal wchar* representation.
|
private |
Internal pointer to the converted string.