| 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); |
no outgoing calls
no test coverage detected