System::Text::ICUDecoder 클래스
내용물
[
숨다
]ICUDecoder class
Decoder that uses ICU for decoding. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class ICUDecoder : public System::Text::Decoder
메서드
| 메서드 | 설명 |
|---|---|
| virtual Convert(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int, int, bool, int&, int&, bool&) | 바이트를 문자로 변환합니다. |
| virtual Convert(const uint8_t *, int, char_t *, int, bool, int&, int&, bool&) | 바이트를 문자로 변환합니다. |
| virtual GetCharCount(ArrayPtr<uint8_t>, int, int) | 버퍼를 디코딩하는 데 필요한 문자 수를 가져옵니다. |
| virtual GetCharCount(ArrayPtr<uint8_t>, int, int, bool) | 버퍼를 디코딩하는 데 필요한 문자 수를 가져옵니다. |
| virtual GetCharCount(const uint8_t *, int, bool) | 버퍼를 디코딩하는 데 필요한 문자 수를 가져옵니다. |
| virtual GetChars(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int) | 버퍼를 디코딩한 결과 문자를 가져옵니다. |
| virtual GetChars(ArrayPtr<uint8_t>, int, int, ArrayPtr<char_t>, int, bool) | 버퍼를 디코딩한 결과 문자를 가져옵니다. |
| virtual GetChars(const uint8_t *, int, char_t *, int, bool) | 버퍼를 디코딩한 결과 문자를 가져옵니다. |
| ICUDecoder(ICUEncoding *) | 생성자. |
| virtual Reset() | 내부 변수를 초기 상태로 설정합니다. |
| virtual ~ICUDecoder() | 소멸자. |
Typedefs
| 타입 정의 | 설명 |
|---|---|
| Base | Base 유형. |
또 보기
- Class Decoder
- Namespace System::Text
- Library Aspose.Page for C++