| 738 | } |
| 739 | |
| 740 | uint32_t IfcLoader::GetNextExpressID(uint32_t expressId) const { |
| 741 | uint32_t currentId = expressId+1; |
| 742 | while(!_lines.contains(currentId)) currentId++; |
| 743 | return currentId; |
| 744 | } |
| 745 | |
| 746 | std::string IfcLoader::GetExpandedUUIDArgument() const |
| 747 | { |
no test coverage detected