| 187 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 188 | |
| 189 | AbstractAspect::AbstractAspect(const QString& name, AspectType type) |
| 190 | : m_type(type) |
| 191 | , d(new AbstractAspectPrivate(this, name)) { |
| 192 | } |
| 193 | |
| 194 | AbstractAspect::~AbstractAspect() { |
| 195 | delete d; |
nothing calls this directly
no outgoing calls
no test coverage detected