| 11 | #include <QtCore/qlogging.h> |
| 12 | |
| 13 | CachedSqlQueryModel::CachedSqlQueryModel(QObject *parent, int cacheCapacity) |
| 14 | : QSqlQueryModel(parent) |
| 15 | , cache(cacheCapacity) |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | QVariant CachedSqlQueryModel::data(const QModelIndex &item, int role) const |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected