| 33 | namespace core { |
| 34 | |
| 35 | ConfigurableComponent::ConfigurableComponent() |
| 36 | : accept_all_properties_(false), |
| 37 | logger_(logging::LoggerFactory<ConfigurableComponent>::getLogger()) { |
| 38 | } |
| 39 | |
| 40 | ConfigurableComponent::ConfigurableComponent(const ConfigurableComponent &&other) |
| 41 | : accept_all_properties_(false), |
nothing calls this directly
no outgoing calls
no test coverage detected