Fixes to header writing

This commit is contained in:
Thomas Krijnen
2025-08-26 10:18:13 +02:00
parent 9d9e9ed4cb
commit 4011666162
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ double to_radian(double deg) { return PI * deg / 180; }
Schema::IfcProject* setup_project(IfcHierarchyHelper<Schema>& file) {
std::vector<std::string> file_description;
file_description.push_back("ViewDefinition[Alignment-basedReferenceView]");
file.header().file_description().description(file_description);
file.header().file_description()->setdescription(file_description);
auto project = file.addProject();
project->setName(std::string("FHWA Bridge Geometry Manual Example Alignment"));