src/linetypes/conditionaledge.h

Mon, 27 Sep 2021 21:04:45 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 27 Sep 2021 21:04:45 +0300
changeset 140
2f383e88acf4
parent 132
488d0ba6070b
child 141
185eb297dc1e
permissions
-rw-r--r--

work on saving

#pragma once
#include "polygonobject.h"

namespace ldraw
{
	class ConditionalEdge;
}

class ldraw::ConditionalEdge : public PolygonObject<4>
{
public:
	using PolygonObject<4>::PolygonObject;
	QString textRepresentation() const override;
	Type typeIdentifier() const override;
};

mercurial