| 214 | |
| 215 | |
| 216 | int |
| 217 | FileStream::tag(const char *tagName) |
| 218 | { |
| 219 | if (fileOpen == 0) |
| 220 | this->open(); |
| 221 | |
| 222 | // output the xml for it to the file |
| 223 | this->indent(); |
| 224 | (*this) << tagName << endln; |
| 225 | |
| 226 | numIndent++; |
| 227 | |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | int |
| 232 | FileStream::tag(const char *tagName, const char *value) |
no test coverage detected