* @brief Check if a filter pattern contains wildcard characters (* or ?). */
| 227 | * @brief Check if a filter pattern contains wildcard characters (* or ?). |
| 228 | */ |
| 229 | bool ContainsWildcard(const std::string& filterValue) |
| 230 | { |
| 231 | return filterValue.find_first_of("*?") != std::string::npos; |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * @brief Check if a property value matches a filter pattern. |
no outgoing calls
no test coverage detected