! * Returns the \c Column at the index \c index. * @param index The zero-based index of the \c Column. * @return The \c Column at the index \c index. */
| 536 | * @return The \c Column at the index \c index. |
| 537 | */ |
| 538 | Column* Spreadsheet::column(int index) const { |
| 539 | return child<Column>(index); |
| 540 | } |
| 541 | |
| 542 | /*! |
| 543 | * Returns a pointer to the \c Column with the name \c name. |
no outgoing calls
no test coverage detected