Fix compilation of serializers and convert

This commit is contained in:
Thomas Krijnen
2019-08-17 09:47:07 +02:00
parent ddeaf5a375
commit 585b89be87
14 changed files with 119 additions and 97 deletions
+3 -3
View File
@@ -37,9 +37,9 @@ public:
virtual ~OpenCascadeBasedSerializer() {}
void writeHeader() {}
bool ready();
virtual void writeShape(const IfcGeom::ConversionResultShape* shape) = 0;
void write(const IfcGeom::TriangulationElement<real_t>* /*o*/) {}
void write(const IfcGeom::NativeElement<real_t>* o);
virtual void writeShape(const ifcopenshell::geometry::ConversionResultShape* shape) = 0;
void write(const ifcopenshell::geometry::TriangulationElement* /*o*/) {}
void write(const ifcopenshell::geometry::NativeElement* o);
bool isTesselated() const { return false; }
void setFile(IfcParse::IfcFile*) {}
};