| 30 | } |
| 31 | |
| 32 | void cmXMLWriter::StartElement(std::string const& name) |
| 33 | { |
| 34 | this->CloseStartElement(); |
| 35 | this->ConditionalLineBreak(!this->IsContent); |
| 36 | this->Output << '<' << name; |
| 37 | this->Elements.push(name); |
| 38 | ++this->Indent; |
| 39 | this->ElementOpen = true; |
| 40 | this->BreakAttrib = false; |
| 41 | } |
| 42 | |
| 43 | void cmXMLWriter::EndElement() |
| 44 | { |
no test coverage detected