Sun, 25 Jul 2021 20:39:21 +0300
use QT_NO_KEYWORDS
#pragma once #include "polygonobject.h" namespace ldraw { class Edge; } class ldraw::Edge : public PolygonObject<2> { public: using PolygonObject::PolygonObject; QString textRepresentation() const override; void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override; };