| 25 | using namespace SigDigger; |
| 26 | |
| 27 | BookmarkTableModel::BookmarkTableModel( |
| 28 | QObject *parent, |
| 29 | const QMap<qint64,Suscan::Bookmark> *map) : QAbstractTableModel(parent) |
| 30 | { |
| 31 | this->bookmarkPtr = map; |
| 32 | } |
| 33 | |
| 34 | |
| 35 | int |
nothing calls this directly
no outgoing calls
no test coverage detected