| 9 | #include "Model/KeyTreeModel.h" |
| 10 | |
| 11 | KeyTreeModel::KeyTreeModel(QObject *parent) |
| 12 | : QAbstractItemModel(parent) |
| 13 | { |
| 14 | headerInfo = "KEY"; |
| 15 | conicon = new QIcon(ICON_LONGIN); |
| 16 | dbicon = new QIcon(ICON_DB); |
| 17 | keyicon = new QIcon(ICON_KEY); |
| 18 | rootItem = new KeyTreeItem(headerInfo); |
| 19 | } |
| 20 | |
| 21 | KeyTreeModel::~KeyTreeModel() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected