Mercurial > hg > svcore
comparison data/fileio/CSVFormat.h @ 1510:5f1b2a117a4f import-audio-data
Debug etc
author | Chris Cannam |
---|---|
date | Wed, 05 Sep 2018 11:56:45 +0100 |
parents | 53fa8d57b728 |
children | 12b7a9613eb5 |
comparison
equal
deleted
inserted
replaced
1509:3299b42d8bdd | 1510:5f1b2a117a4f |
---|---|
115 ColumnPurpose getColumnPurpose(int i); | 115 ColumnPurpose getColumnPurpose(int i); |
116 ColumnPurpose getColumnPurpose(int i) const; | 116 ColumnPurpose getColumnPurpose(int i) const; |
117 void setColumnPurpose(int i, ColumnPurpose p); | 117 void setColumnPurpose(int i, ColumnPurpose p); |
118 | 118 |
119 // read-only; only valid if format has been guessed: | 119 // read-only; only valid if format has been guessed: |
120 QList<ColumnQualities> getColumnQualities() const { return m_columnQualities; } | 120 const QList<ColumnQualities> &getColumnQualities() const { |
121 return m_columnQualities; | |
122 } | |
121 | 123 |
122 // read-only; only valid if format has been guessed: | 124 // read-only; only valid if format has been guessed: |
123 QList<QStringList> getExample() const { return m_example; } | 125 const QList<QStringList> &getExample() const { |
126 return m_example; | |
127 } | |
128 | |
124 int getMaxExampleCols() const { return m_maxExampleCols; } | 129 int getMaxExampleCols() const { return m_maxExampleCols; } |
125 | 130 |
126 protected: | 131 protected: |
127 ModelType m_modelType; | 132 ModelType m_modelType; |
128 TimingType m_timingType; | 133 TimingType m_timingType; |