comparison data/model/DenseThreeDimensionalModel.h @ 1155:546d4e417346 3.0-integration

Tidy a bit
author Chris Cannam
date Fri, 22 Jan 2016 17:08:02 +0000
parents aa588c391d1a
children abb78e824820
comparison
equal deleted inserted replaced
1154:aa588c391d1a 1155:546d4e417346
52 52
53 /** 53 /**
54 * Return the maximum permissible value in each bin. 54 * Return the maximum permissible value in each bin.
55 */ 55 */
56 virtual float getMaximumLevel() const = 0; 56 virtual float getMaximumLevel() const = 0;
57
58 /**
59 * Return true if there are data available for the given column.
60 * This should return true only if getColumn(column) would not
61 * have to do any substantial work to calculate its return values.
62 * If this function returns false, it may still be possible to
63 * retrieve the column, but its values may have to be calculated.
64 */
65 virtual bool isColumnAvailable(int column) const = 0;
66 57
67 typedef std::vector<float> Column; 58 typedef std::vector<float> Column;
68 59
69 /** 60 /**
70 * Get data from the given column of bin values. 61 * Get data from the given column of bin values.