Sun, 22 Sep 2019 11:51:41 +0300
Added lots of code
3 | 1 | #pragma once |
2 | #include "modelobject.h" | |
3 | ||
4 | namespace modelobjects | |
5 | { | |
6 | class SubfileReference; | |
7 | } | |
8 | ||
9 | class modelobjects::SubfileReference : ColoredBaseObject | |
10 | { | |
11 | public: | |
12 | SubfileReference() = default; | |
13 | QVariant getProperty(Property property) const override; | |
14 | private: | |
15 | Vertex position; | |
16 | QMatrix3x3 transformation; | |
17 | QString referenceName; | |
18 | }; |