comparison data/fileio/CSVFileReader.h @ 1580:c01cbe41aeb5 fix-static-analysis

Use override throughout
author Chris Cannam
date Mon, 26 Nov 2018 13:48:45 +0000
parents fbe8afdfa8a6
children 2654bf447a84
comparison
equal deleted inserted replaced
1579:232d6ddf257d 1580:c01cbe41aeb5
50 sv_samplerate_t mainModelSampleRate, 50 sv_samplerate_t mainModelSampleRate,
51 ProgressReporter *reporter = 0); 51 ProgressReporter *reporter = 0);
52 52
53 virtual ~CSVFileReader(); 53 virtual ~CSVFileReader();
54 54
55 virtual bool isOK() const; 55 bool isOK() const override;
56 virtual QString getError() const; 56 QString getError() const override;
57 57
58 virtual Model *load() const; 58 Model *load() const override;
59 59
60 protected: 60 protected:
61 CSVFormat m_format; 61 CSVFormat m_format;
62 QIODevice *m_device; 62 QIODevice *m_device;
63 bool m_ownDevice; 63 bool m_ownDevice;