* \brief Ctor */
| 210 | * \brief Ctor |
| 211 | */ |
| 212 | AbstractColumnRemoveRowsCmd::AbstractColumnRemoveRowsCmd(AbstractColumn* col, int first, int count) |
| 213 | : m_col(col->d) |
| 214 | , m_first(first) |
| 215 | , m_count(count) { |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * \brief Dtor |
nothing calls this directly
no outgoing calls
no test coverage detected