* \brief Ctor * * \param name the column name (= aspect name) */
| 66 | * \param name the column name (= aspect name) |
| 67 | */ |
| 68 | AbstractColumn::AbstractColumn(const QString& name, AspectType type) |
| 69 | : AbstractAspect(name, type) |
| 70 | , d(new AbstractColumnPrivate(this)) { |
| 71 | } |
| 72 | |
| 73 | AbstractColumn::~AbstractColumn() { |
| 74 | Q_EMIT aboutToBeDestroyed(this); |
nothing calls this directly
no outgoing calls
no test coverage detected