// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "single_numeric_enum_search_context.h" #include "single_enum_search_context.hpp" namespace search::attribute { template SingleNumericEnumSearchContext::SingleNumericEnumSearchContext(std::unique_ptr qTerm, const AttributeVector& toBeSearched, EnumIndices enum_indices, const EnumStoreT& enum_store) : SingleEnumSearchContext>>(NumericRangeMatcher(*qTerm, true), toBeSearched, enum_indices, enum_store) { } }