| 184 | } |
| 185 | |
| 186 | bool Configuration::Predicate::operator()(const Configuration* conf) const { |
| 187 | return ((conf != nullptr) && (conf->level() == m_level) && (conf->configurationType() == m_configurationType)); |
| 188 | } |
| 189 | |
| 190 | // Configurations |
| 191 |
nothing calls this directly
no test coverage detected