comparison data/fileio/CSVFormat.h @ 1021:1888ca033a84

If the first column of a CSV file has zero or one non-empty values in it, during the first 5 rows, then ignore it by default
author Chris Cannam
date Mon, 01 Dec 2014 10:18:55 +0000
parents e369dd281cf2
children 26cf6d5251ec
comparison
equal deleted inserted replaced
1020:9c00e7944bf2 1021:1888ca033a84
51 ColumnPitch, 51 ColumnPitch,
52 ColumnLabel 52 ColumnLabel
53 }; 53 };
54 54
55 enum ColumnQuality { 55 enum ColumnQuality {
56 ColumnNumeric = 0x1, 56 ColumnNumeric = 1,
57 ColumnIntegral = 0x2, 57 ColumnIntegral = 2,
58 ColumnIncreasing = 0x4, 58 ColumnIncreasing = 4,
59 ColumnLarge = 0x8 59 ColumnLarge = 8,
60 ColumnNearEmpty = 16,
60 }; 61 };
61 typedef unsigned int ColumnQualities; 62 typedef unsigned int ColumnQualities;
62 63
63 CSVFormat() : // arbitrary defaults 64 CSVFormat() : // arbitrary defaults
64 m_modelType(TwoDimensionalModel), 65 m_modelType(TwoDimensionalModel),