| 254 | } |
| 255 | |
| 256 | int |
| 257 | FileStream::attr(const char *name, int value) |
| 258 | { |
| 259 | if (fileOpen == 0) |
| 260 | this->open(); |
| 261 | |
| 262 | this->indent(); |
| 263 | (*this) << name << " = " << value << endln; |
| 264 | |
| 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | int |
| 269 | FileStream::attr(const char *name, double value) |
no test coverage detected