--- a/src/objecttypes/subfilereference.h Sun Nov 03 18:09:47 2019 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -#pragma once -#include "modelobject.h" -#include "matrix.h" - -namespace linetypes -{ - class SubfileReference; -} - -class linetypes::SubfileReference : public ColoredObject -{ -public: - SubfileReference() = default; - SubfileReference( - const Vertex& position, - const Matrix3x3& transformation, - const QString &referenceName, - const Color color = colors::main); - QVariant getProperty(Property property) const override; - SetPropertyResult setProperty(Property property, const QVariant& value) override; - QString textRepresentation() const override; -private: - Vertex position; - Matrix3x3 transformation; - QString referenceName; -};