review: Take into account remarks

This commit is contained in:
Esteban DUGUEPEROUX
2026-01-23 20:41:40 +01:00
parent a86c333a99
commit 8f3715c0f1
10 changed files with 59 additions and 164 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ public:
};
int main(int argc, char** argv) {
const char filename[] = "IfcCsgPrimitive.ifc";
const char filename[] = "csg_primitive.ifc";
IfcHierarchyHelper<IfcSchema> file;
file.header().file_name()->setname(filename);
@@ -187,7 +187,7 @@ int main(int argc, char** argv) {
product->setRepresentation(shape);
using namespace std::string_literals;
file.getSingle<IfcSchema::IfcProject>()->setName("IfcCompositeProfileDef"s);
file.getSingle<IfcSchema::IfcProject>()->setName("csg_primitive"s);
std::ofstream f(filename);
f << file;