Closes the current section and restores the parent context; finalizes output if the root section is closed
| 152 | |
| 153 | /// Closes the current section and restores the parent context; finalizes output if the root section is closed |
| 154 | BOOL ValidateXmlWriter::end(const std::string& key) { |
| 155 | if (file == nullptr) return FALSE; |
| 156 | |
| 157 | indent--; |
| 158 | printIndent(stream); |
| 159 | stream << "</" << key << ">\n"; |
| 160 | return TRUE; |
| 161 | } |
no outgoing calls
no test coverage detected