@{ * Return the index of the valid dimension. */
| 207 | * Return the index of the valid dimension. |
| 208 | */ |
| 209 | void Get1DAxis(unsigned int& axis) const |
| 210 | { |
| 211 | assert("pre: valid_dim" && this->GetDimension() == 1); |
| 212 | axis = this->Axis[0]; |
| 213 | } |
| 214 | ///@} |
| 215 | |
| 216 | ///@{ |
nothing calls this directly
no test coverage detected