// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "attributevector.h" #include namespace search::attribute { /** * Class used to convert from attributes config to the config used by the AttributeVector implementation. **/ class ConfigConverter { public: static Config convert(const vespa::config::search::AttributesConfig::Attribute & cfg); }; }