| 215 | } |
| 216 | |
| 217 | std::string IfcCharacterDecoder::get(size_t& ptr) { |
| 218 | auto local_stream = *stream_; |
| 219 | local_stream.seek(ptr); |
| 220 | auto s = read_string(local_stream, mode, substitution_character); |
| 221 | ptr = local_stream.tell(); |
| 222 | return s; |
| 223 | } |
| 224 | |
| 225 | void IfcCharacterDecoder::skip() { |
| 226 | unsigned int parse_state = 0; |
nothing calls this directly
no test coverage detected