src/linetypes/conditionaledge.h

Sun, 16 May 2021 22:41:00 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 16 May 2021 22:41:00 +0300
changeset 103
94719518e310
parent 89
7abaf1d64719
child 132
488d0ba6070b
permissions
-rw-r--r--

update

#pragma once
#include "polygonobject.h"

namespace ldraw
{
	class ConditionalEdge;
}

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

mercurial