* @brief Adds a pattern to the multi-pattern * * The order of addition matters during the classification * @param pattern pattern pointer */
| 428 | * @param pattern pattern pointer |
| 429 | */ |
| 430 | void |
| 431 | MultiPattern::add(Pattern *pattern) |
| 432 | { |
| 433 | this->_list.push_back(pattern); |
| 434 | } |
| 435 | |
| 436 | /** |
| 437 | * @brief Matches the subject string against all patterns. |
no test coverage detected