cmXMLWriter: overload Element() method for empty elements

This commit is contained in:
Daniel Pfeifer 2015-07-16 21:50:28 +02:00 committed by Brad King
parent cd992170db
commit dd27e31351
2 changed files with 9 additions and 0 deletions

View File

@ -67,6 +67,13 @@ void cmXMLWriter::EndElement()
this->ElementOpen = false;
}
void cmXMLWriter::Element(const char* name)
{
this->CloseStartElement();
this->ConditionalLineBreak(!this->IsContent, this->Elements.size());
this->Output << '<' << name << "/>";
}
void cmXMLWriter::BreakAttributes()
{
this->BreakAttrib = true;

View File

@ -41,6 +41,8 @@ public:
this->Output << name << "=\"" << SafeAttribute(value) << '"';
}
void Element(const char* name);
template <typename T>
void Element(std::string const& name, T const& value)
{