MCPcopy Create free account
hub / github.com/Kitware/CMake / BeginElement

Method BeginElement

Source/CPack/WiX/cmWIXSourceWriter.cxx:69–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void cmWIXSourceWriter::BeginElement(std::string const& name)
70{
71 if (State == BEGIN) {
72 File << '>';
73 }
74
75 File << '\n';
76 Indent(Elements.size());
77 File << '<' << name;
78
79 Elements.push_back(name);
80 State = BEGIN;
81}
82
83void cmWIXSourceWriter::EndElement(std::string const& name)
84{

Calls 2

push_backMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected