| 153 | } |
| 154 | |
| 155 | int |
| 156 | Information::setMatrix(const Matrix &newMatrix) |
| 157 | { |
| 158 | if (theMatrix != 0) { |
| 159 | *theMatrix = newMatrix; |
| 160 | } else { |
| 161 | theMatrix = new Matrix(newMatrix); |
| 162 | } |
| 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | |
| 167 | int |
| 168 | Information::setString(const char *newString) |
no outgoing calls
no test coverage detected