diff -r 6988973515d2 -r ca23936b455b src/linetypes/edge.h --- a/src/linetypes/edge.h Wed May 25 20:36:34 2022 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -#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& polygons, GetPolygonsContext* context) const override; - Type typeIdentifier() const override; - QString toLDrawCode() const override; - QString iconName() const override; - QString typeName() const override; -};