| 406 | |
| 407 | |
| 408 | void |
| 409 | StandardStream::indent(void) |
| 410 | { |
| 411 | for (int i=0; i<numIndent; i++) { |
| 412 | cerr << indentString; |
| 413 | if (fileOpen != 0) |
| 414 | theFile << indentString; |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | int |
| 419 | StandardStream::sendSelf(int commitTag, Channel &theChannel) |