PUBLIC CTORS,DTOR
| 28 | |
| 29 | //# PUBLIC CTORS,DTOR |
| 30 | QmitkPropertiesTableModel::QmitkPropertiesTableModel(QObject *parent, mitk::PropertyList::Pointer _PropertyList) |
| 31 | : QAbstractTableModel(parent), |
| 32 | m_PropertyList(nullptr), |
| 33 | m_BlockEvents(false), |
| 34 | m_SortDescending(false), |
| 35 | m_FilterKeyWord("") |
| 36 | { |
| 37 | this->SetPropertyList(_PropertyList); |
| 38 | } |
| 39 | |
| 40 | QmitkPropertiesTableModel::~QmitkPropertiesTableModel() |
| 41 | { |
nothing calls this directly
no test coverage detected