| 95 | struct ListProperty : public Property |
| 96 | { |
| 97 | ListProperty(const std::string& name, Dimension::Type countType, |
| 98 | Dimension::Type listType) : Property(name), m_countType(countType), |
| 99 | m_listType(listType) |
| 100 | {} |
| 101 | |
| 102 | Dimension::Type m_countType; |
| 103 | Dimension::Type m_listType; |
nothing calls this directly
no outgoing calls
no test coverage detected