| 36 | { |
| 37 | |
| 38 | StatisticsFileBase::StatisticsFileBase(const QString &filename) |
| 39 | { |
| 40 | this->file.openFile(filename); |
| 41 | if (!this->file.isOk()) |
| 42 | { |
| 43 | this->errorMessage = "Error opening file " + filename; |
| 44 | this->error = true; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | StatisticsFileBase::~StatisticsFileBase() { this->abortParsingDestroy = true; } |
| 49 |