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

Method EndElement

Source/cmGlobalXCodeGenerator.cxx:88–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86 this->Data = "";
87 }
88 void EndElement(std::string const& name) override
89 {
90 if (name == "key"_s) {
91 this->Key = this->Data;
92 } else if (name == "string"_s) {
93 if (this->Key == "CFBundleShortVersionString"_s) {
94 this->Version = this->Data;
95 }
96 }
97 }
98 void CharacterDataHandler(char const* data, int length) override
99 {
100 this->Data.append(data, length);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected