| 181 | |
| 182 | |
| 183 | int |
| 184 | FileStream::setPrecision(int prec) |
| 185 | { |
| 186 | // if (fileOpen == 0) |
| 187 | // this->open(); |
| 188 | |
| 189 | filePrecision = prec; |
| 190 | |
| 191 | if (fileOpen != 0) |
| 192 | theFile << std::setprecision(prec); |
| 193 | |
| 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | int |
| 198 | FileStream::setFloatField(floatField field) |
no outgoing calls
no test coverage detected