MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / get

Method get

src/ifcparse/IfcCharacterDecoder.cpp:217–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217std::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
225void IfcCharacterDecoder::skip() {
226 unsigned int parse_state = 0;

Callers

nothing calls this directly

Calls 3

read_stringFunction · 0.85
seekMethod · 0.80
tellMethod · 0.80

Tested by

no test coverage detected