// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "value_converter.h" #include #include namespace config::internal { template > class VectorInserter : public ::vespalib::slime::ArrayTraverser { public: VectorInserter(V & vector); void entry(size_t idx, const ::vespalib::slime::Inspector & inspector) override; private: V & _vector; }; }