Sat, 14 Dec 2019 22:36:06 +0200
added missing files
#pragma once #include "object.h" #include "matrix.h" namespace linetypes { class SubfileReference; } class linetypes::SubfileReference : public ColoredObject { public: SubfileReference() = default; SubfileReference( const Point3D& 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: Point3D position; Matrix3x3 transformation; QString referenceName; };