refs #195, extended model classes

* mode for users (detailed, complete)
* mode for ATC station (booked, online)
* clear method for columns
This commit is contained in:
Klaus Basan
2014-04-20 18:30:20 +02:00
parent 247e045288
commit 60f1b285ec
5 changed files with 102 additions and 34 deletions

View File

@@ -124,6 +124,8 @@ namespace BlackGui
//! Column at position
const CColumn &at(int columnNumber) const { return this->m_columns.at(columnNumber); }
//! Clear
void clear() { this->m_columns.clear(); }
private:
QList<CColumn> m_columns;