| 171 | } |
| 172 | |
| 173 | bool IfcSpfHeader::tryRead() { |
| 174 | try { |
| 175 | read(); |
| 176 | return true; |
| 177 | } catch (const std::exception& e) { |
| 178 | Logger::Error(e); |
| 179 | return false; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | void IfcSpfHeader::write(std::ostream& out) const { |
| 184 | out << ISO_10303_21 << ";" |
no test coverage detected