| 1864 | } |
| 1865 | |
| 1866 | size_t GetDataColumnCount() const |
| 1867 | { |
| 1868 | const size_t firstDataRow = |
| 1869 | static_cast<size_t>((mLabelParams.mColumnNameIdx >= 0) ? mLabelParams.mColumnNameIdx : 0); |
| 1870 | return (mData.size() > firstDataRow) ? mData.at(firstDataRow).size() : 0; |
| 1871 | } |
| 1872 | |
| 1873 | inline size_t GetDataRowIndex(const size_t pRowIdx) const |
| 1874 | { |
nothing calls this directly
no outgoing calls
no test coverage detected