mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 22:00:10 -05:00
cmXMLWriter: overload Element() method for empty elements
This commit is contained in:
committed by
Brad King
parent
cd992170db
commit
dd27e31351
@@ -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;
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user