Mercurial > hg > svcore
comparison data/model/EditableDenseThreeDimensionalModel.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 | 1517d4c60e88 |
children | 546d4e417346 |
comparison
equal
deleted
inserted
replaced
1153:ece369c5bb68 | 1154:aa588c391d1a |
---|---|
192 virtual void toXml(QTextStream &out, | 192 virtual void toXml(QTextStream &out, |
193 QString indent = "", | 193 QString indent = "", |
194 QString extraAttributes = "") const; | 194 QString extraAttributes = "") const; |
195 | 195 |
196 protected: | 196 protected: |
197 typedef QVector<Column> ValueMatrix; | 197 typedef std::vector<Column> ValueMatrix; |
198 ValueMatrix m_data; | 198 ValueMatrix m_data; |
199 | 199 |
200 // m_trunc is used for simple compression. If at least the top N | 200 // m_trunc is used for simple compression. If at least the top N |
201 // elements of column x (for N = some proportion of the column | 201 // elements of column x (for N = some proportion of the column |
202 // height) are equal to those of an earlier column x', then | 202 // height) are equal to those of an earlier column x', then |