| 728 | } |
| 729 | |
| 730 | std::string ExtractString(uint32_t stringIndex) const |
| 731 | { |
| 732 | auto const stringsCount = m_textStorage.GetNumStrings(); |
| 733 | if (stringIndex >= stringsCount) |
| 734 | return {}; |
| 735 | |
| 736 | return m_textStorage.ExtractString(stringIndex); |
| 737 | } |
| 738 | |
| 739 | coding::BlockedTextStorage<Reader> & m_textStorage; |
| 740 | LocalizableStringIndex * m_lastIndex = nullptr; |
nothing calls this directly
no test coverage detected