| 80 | struct SimpleProperty : public Property |
| 81 | { |
| 82 | SimpleProperty(const std::string& name, Dimension::Type type) : |
| 83 | Property(name), m_type(type), m_dim(Dimension::Id::Unknown) |
| 84 | {} |
| 85 | |
| 86 | Dimension::Type m_type; |
| 87 | Dimension::Id m_dim; |
nothing calls this directly
no outgoing calls
no test coverage detected