Mercurial > hg > svcore
comparison data/fileio/CSVFileReader.h @ 1038:cc27f35aa75c cxx11
Introducing the signed 64-bit frame index type, and fixing build failures from inclusion of -Wconversion with -Werror. Not finished yet.
author | Chris Cannam |
---|---|
date | Tue, 03 Mar 2015 15:18:24 +0000 |
parents | 920699b6989d |
children | 26cf6d5251ec |
comparison
equal
deleted
inserted
replaced
1037:bf0e5944289b | 1038:cc27f35aa75c |
---|---|
17 #define _CSV_FILE_READER_H_ | 17 #define _CSV_FILE_READER_H_ |
18 | 18 |
19 #include "DataFileReader.h" | 19 #include "DataFileReader.h" |
20 | 20 |
21 #include "CSVFormat.h" | 21 #include "CSVFormat.h" |
22 | |
23 #include "base/BaseTypes.h" | |
22 | 24 |
23 #include <QList> | 25 #include <QList> |
24 #include <QStringList> | 26 #include <QStringList> |
25 | 27 |
26 class QFile; | 28 class QFile; |
56 QString m_filename; | 58 QString m_filename; |
57 QString m_error; | 59 QString m_error; |
58 mutable int m_warnings; | 60 mutable int m_warnings; |
59 int m_mainModelSampleRate; | 61 int m_mainModelSampleRate; |
60 | 62 |
61 int convertTimeValue(QString, int lineno, int sampleRate, | 63 sv_frame_t convertTimeValue(QString, int lineno, int sampleRate, |
62 int windowSize) const; | 64 int windowSize) const; |
63 }; | 65 }; |
64 | 66 |
65 | 67 |
66 #endif | 68 #endif |
67 | 69 |