| 82 | }; |
| 83 | |
| 84 | std::map<std::string, std::string> initMap() |
| 85 | { |
| 86 | // clang-format off |
| 87 | std::map<std::string, std::string> propMap = {{"Comment", ""}, |
| 88 | {"Company", ""}, |
| 89 | {"CreatedBy", ""}, |
| 90 | {"CreationDate", ""}, |
| 91 | {"Label", ""}, |
| 92 | {"LastModifiedBy", ""}, |
| 93 | {"LastModifiedDate", ""}, |
| 94 | {"License", ""}, |
| 95 | {"LicenseURL", ""}, |
| 96 | {"Uid", ""}}; |
| 97 | return propMap; |
| 98 | // clang-format on |
| 99 | } |
| 100 | |
| 101 | std::string readValue(DOMNode* node) |
| 102 | { |
no outgoing calls
no test coverage detected