Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
CharacterEncodingException.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
5
6 /*
7 ********************************************************************************
8 ************************ Characters::CharacterEncodingException ****************
9 ********************************************************************************
10 */
11 inline auto CharacterEncodingException::GetEncodingOrDecoding () const -> EncodingOrDecoding
12 {
13 return fEncodingOrDecoding_;
14 }
15 inline auto CharacterEncodingException::GetAtSourceOffset () const -> optional<size_t>
16 {
17 return fAtSourceOffset_;
18 }
19 inline auto CharacterEncodingException::GetEncodiing () const -> optional<String>
20 {
21 return fEncoding_;
22 }
23
24}
String is like std::u32string, except it is much easier to use, often much more space efficient,...
Definition String.h:201