| 9 | static const auto LOGGER = Logger("AppManifest"); |
| 10 | |
| 11 | constexpr bool validateString(const std::string& value, const std::function<bool(char)>& isValidChar) { |
| 12 | return std::ranges::all_of(value, isValidChar); |
| 13 | } |
| 14 | |
| 15 | static bool getValueFromManifest(const std::map<std::string, std::string>& map, const std::string& key, std::string& output) { |
| 16 | const auto iterator = map.find(key); |
no outgoing calls
no test coverage detected