| 23 | 0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF}; |
| 24 | |
| 25 | StringView::StringView(const StringImpl& str) |
| 26 | { |
| 27 | mPtr = str.GetPtr(); |
| 28 | mLength = str.mLength; |
| 29 | } |
| 30 | |
| 31 | StringView::StringView(const StringImpl& str, int offset) |
| 32 | { |