| 6 | #include <QDebug> |
| 7 | |
| 8 | ExtStorage::ExtStorage(const QString &dbFile, QObject *parent) : |
| 9 | QObject(parent), |
| 10 | DatabaseWorker(dbFile, QLatin1String("ExtStorage")) |
| 11 | { |
| 12 | setObjectName("storage"); |
| 13 | } |
| 14 | |
| 15 | ExtStorage::~ExtStorage() |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected