| 159 | } |
| 160 | |
| 161 | static stack_node select(IfcUtil::IfcBaseClass* inst, int idx) { |
| 162 | stack_node node; |
| 163 | node.type_ = node_select; |
| 164 | node.inst_ = inst; |
| 165 | node.idx_ = idx; |
| 166 | return node; |
| 167 | } |
| 168 | |
| 169 | static stack_node header() { |
| 170 | stack_node node; |
no outgoing calls
no test coverage detected