| 21 | #include <QFileInfo> |
| 22 | |
| 23 | PgnDatabase::PgnDatabase(const QString& fileName, QObject* parent) |
| 24 | : QObject(parent), |
| 25 | m_fileName(fileName), |
| 26 | m_displayName(QFileInfo(fileName).completeBaseName()) |
| 27 | { |
| 28 | } |
| 29 | |
| 30 | PgnDatabase::~PgnDatabase() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected