| 938 | }; |
| 939 | |
| 940 | raw_vector<T> getcolumn(int iColumn, int iRowStart, int iRowEnd) |
| 941 | { |
| 942 | if( (iRowStart>iRowEnd) || wrongColumn(iColumn) || wrongRow(iRowStart) ||wrongRow(iRowEnd) ) |
| 943 | return raw_vector<T>(0, 0, 1); |
| 944 | else |
| 945 | return raw_vector<T>(&((*this)(iRowStart, iColumn)), iRowEnd-iRowStart+1, m_iLinearMember); |
| 946 | }; |
| 947 | |
| 948 | raw_vector<T> getrow(int iRow, int iColumnStart, int iColumnEnd) |
| 949 | { |
no outgoing calls
no test coverage detected