@brief Used to find configuration from configuration (pointers) repository. Avoid using it.
| 179 | |
| 180 | /// @brief Used to find configuration from configuration (pointers) repository. Avoid using it. |
| 181 | Configuration::Predicate::Predicate(Level level, ConfigurationType configurationType) : |
| 182 | m_level(level), |
| 183 | m_configurationType(configurationType) { |
| 184 | } |
| 185 | |
| 186 | bool Configuration::Predicate::operator()(const Configuration* conf) const { |
| 187 | return ((conf != nullptr) && (conf->level() == m_level) && (conf->configurationType() == m_configurationType)); |
nothing calls this directly
no outgoing calls
no test coverage detected