comparison data/fileio/CSVFormat.h @ 1009:e369dd281cf2

Provide reader from QIODevice
author Chris Cannam
date Fri, 14 Nov 2014 17:23:27 +0000
parents dc1695b90a58
children 1888ca033a84
comparison
equal deleted inserted replaced
1008:d9e0e59a1581 1009:e369dd281cf2
98 98
99 void setModelType(ModelType t) { m_modelType = t; } 99 void setModelType(ModelType t) { m_modelType = t; }
100 void setTimingType(TimingType t) { m_timingType = t; } 100 void setTimingType(TimingType t) { m_timingType = t; }
101 void setTimeUnits(TimeUnits t) { m_timeUnits = t; } 101 void setTimeUnits(TimeUnits t) { m_timeUnits = t; }
102 void setSeparator(QChar s) { m_separator = s; } 102 void setSeparator(QChar s) { m_separator = s; }
103 void setSampleRate(int r) { m_sampleRate = r; } 103 void setSampleRate(int r) { m_sampleRate = r; }
104 void setWindowSize(int s) { m_windowSize = s; } 104 void setWindowSize(int s) { m_windowSize = s; }
105 void setColumnCount(int c) { m_columnCount = c; } 105 void setColumnCount(int c) { m_columnCount = c; }
106 void setAllowQuoting(bool q) { m_allowQuoting = q; } 106 void setAllowQuoting(bool q) { m_allowQuoting = q; }
107 107
108 QList<ColumnPurpose> getColumnPurposes() const { return m_columnPurposes; } 108 QList<ColumnPurpose> getColumnPurposes() const { return m_columnPurposes; }
109 void setColumnPurposes(QList<ColumnPurpose> cl) { m_columnPurposes = cl; } 109 void setColumnPurposes(QList<ColumnPurpose> cl) { m_columnPurposes = cl; }