| 135 | } |
| 136 | |
| 137 | size_t IfcTokenStream::GetTotalSize() |
| 138 | { |
| 139 | if (_chunks.size()==0) return 0; |
| 140 | return _chunks.back().TokenSize() + _chunks.back().GetTokenRef(); |
| 141 | } |
| 142 | |
| 143 | void IfcTokenStream::Back() |
| 144 | { |
nothing calls this directly
no test coverage detected