| 3 | #include "uninitialized_creator.h" |
| 4 | |
| 5 | THolder<TLogBackend> TCompositeBackendCreator::DoCreateLogBackend() const { |
| 6 | auto res = MakeHolder<TCompositeLogBackend>(); |
| 7 | for (const auto& child : Children) { |
| 8 | res->AddLogBackend(child->CreateLogBackend()); |
| 9 | } |
| 10 | return std::move(res); |
| 11 | } |
| 12 | |
| 13 | |
| 14 | TCompositeBackendCreator::TCompositeBackendCreator() |
nothing calls this directly
no test coverage detected