| 207 | {} |
| 208 | |
| 209 | void IfcUtil::IfcBaseEntity::populate_derived() { |
| 210 | for (auto it = declaration().as_entity()->derived().begin(); it != declaration().as_entity()->derived().end(); ++it) { |
| 211 | if (*it) { |
| 212 | set_attribute_value( |
| 213 | std::distance(declaration().as_entity()->derived().begin(), it), |
| 214 | Derived{} |
| 215 | ); |
| 216 | } |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | AttributeValue IfcUtil::IfcBaseEntity::get(const std::string& name) const |
| 221 | { |
nothing calls this directly
no test coverage detected