| 150 | // Configuration |
| 151 | |
| 152 | Configuration::Configuration(const Configuration& c) : |
| 153 | m_level(c.m_level), |
| 154 | m_configurationType(c.m_configurationType), |
| 155 | m_value(c.m_value) { |
| 156 | } |
| 157 | |
| 158 | Configuration& Configuration::operator=(const Configuration& c) { |
| 159 | if (&c != this) { |
nothing calls this directly
no outgoing calls
no test coverage detected