Begins a new structured section identified by the given key and makes it the current write context
| 52 | |
| 53 | /// Begins a new structured section identified by the given key and makes it the current write context |
| 54 | BOOL ValidateXmlWriter::begin(const std::string& key, ContainerType type) { |
| 55 | if (file == nullptr) return FALSE; |
| 56 | |
| 57 | printIndent(stream); |
| 58 | stream << "<" << key << ">\n"; |
| 59 | indent++; |
| 60 | |
| 61 | return TRUE; |
| 62 | } |
| 63 | |
| 64 | /// Begins a sub-section within the current section and makes it the active write context |
| 65 | BOOL ValidateXmlWriter::beginsub(const std::string& key, ContainerType type) { |
no outgoing calls
no test coverage detected