src/linetypes/conditionaledge.h@fb9990772357
src/linetypes/conditionaledge.h
Wed, 22 Sep 2021 12:55:44 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Wed, 22 Sep 2021 12:55:44 +0300
- changeset 137
- fb9990772357
- parent 132
-
488d0ba6070b
- child 141
-
185eb297dc1e
- permissions
- -rw-r--r--
Add documentation to model.cpp
#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;
};