| 2825 | } |
| 2826 | |
| 2827 | AttributeValue IfcUtil::IfcBaseClass::get_attribute_value(size_t index) const { |
| 2828 | void* storage = file_ ? std::visit([](const auto& m) { return (void*)&m; }, file_->storage_) : nullptr; |
| 2829 | return data_.get_attribute_value(storage, &declaration(), id() ? id() : identity(), index); |
| 2830 | } |
| 2831 | |
| 2832 | void IfcUtil::IfcBaseClass::toString(std::ostream& out, bool upper) const |
| 2833 | { |
no test coverage detected