comparison data/model/DenseThreeDimensionalModel.h @ 1154:aa588c391d1a 3.0-integration

Convert 3d model column type from QVector to std::vector; replace another user of ResizeableBitset
author Chris Cannam
date Fri, 22 Jan 2016 13:39:45 +0000
parents cc27f35aa75c
children 546d4e417346
comparison
equal deleted inserted replaced
1153:ece369c5bb68 1154:aa588c391d1a
62 * If this function returns false, it may still be possible to 62 * If this function returns false, it may still be possible to
63 * retrieve the column, but its values may have to be calculated. 63 * retrieve the column, but its values may have to be calculated.
64 */ 64 */
65 virtual bool isColumnAvailable(int column) const = 0; 65 virtual bool isColumnAvailable(int column) const = 0;
66 66
67 typedef QVector<float> Column; 67 typedef std::vector<float> Column;
68 68
69 /** 69 /**
70 * Get data from the given column of bin values. 70 * Get data from the given column of bin values.
71 */ 71 */
72 virtual Column getColumn(int column) const = 0; 72 virtual Column getColumn(int column) const = 0;