| 1762 | |
| 1763 | /// @brief Used to find configuration from configuration (pointers) repository. Avoid using it. |
| 1764 | class Predicate { |
| 1765 | public: |
| 1766 | Predicate(Level level, ConfigurationType configurationType); |
| 1767 | |
| 1768 | bool operator()(const Configuration* conf) const; |
| 1769 | |
| 1770 | private: |
| 1771 | Level m_level; |
| 1772 | ConfigurationType m_configurationType; |
| 1773 | }; |
| 1774 | |
| 1775 | private: |
| 1776 | Level m_level; |
nothing calls this directly
no outgoing calls
no test coverage detected