// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include "distributornodecontext.h" #include namespace storage { DistributorNodeContext::DistributorNodeContext(std::unique_ptr clock) : StorageNodeContext(std::make_unique(), std::move(clock)), _componentRegister(dynamic_cast(StorageNodeContext::getComponentRegister())) { } } // storage