Interface of a converter to/from the UTF-16 format. More...
#include <arcane/utils/ITranscoder.h>
Public Member Functions | |
| virtual void | build ()=0 |
| virtual void | transcodeToUtf16 (const Byte *src, Integer src_len, UChar *out)=0 |
| Translates the source src of length src_len to the UTF-16 format. | |
| virtual void | transcodeFromUtf16 (const UChar *src, Integer src_len, Byte *out)=0 |
| Translates the source src of length src_len from the UTF-16 format. | |
Interface of a converter to/from the UTF-16 format.
Definition at line 32 of file ITranscoder.h.
|
inlinevirtual |
Definition at line 36 of file ITranscoder.h.
|
pure virtual |
Translates the source src of length src_len from the UTF-16 format.
Stores the conversion in out, which must be pre-allocated and of sufficient length.
Implemented in Arcane::ISO88591Transcoder.
|
pure virtual |
Translates the source src of length src_len to the UTF-16 format.
Stores the conversion in out, which must be pre-allocated and of sufficient length.
Implemented in Arcane::ISO88591Transcoder.