| 17 | } |
| 18 | |
| 19 | bool IfcTokenStream::IfcTokenChunk::Clear(bool force) |
| 20 | { |
| 21 | if (_fileStream==nullptr && !force) return false; |
| 22 | if (_chunkData!=nullptr) { delete[] _chunkData; _chunkData = nullptr; } |
| 23 | _loaded=false; |
| 24 | return true; |
| 25 | } |
| 26 | |
| 27 | bool IfcTokenStream::IfcTokenChunk::Clear() |
| 28 | { |
no outgoing calls
no test coverage detected