| 234 | }; |
| 235 | |
| 236 | IfcParse::FileReader::FileReader(const std::string& fn) |
| 237 | : cursor_(0) |
| 238 | { |
| 239 | impl_ = std::make_shared<FullBufferImpl>(fn); |
| 240 | } |
| 241 | |
| 242 | IfcParse::FileReader::FileReader(const std::string& fn, const mmap_tag&) |
| 243 | : cursor_(0) |
nothing calls this directly
no test coverage detected