aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/multi_enum_search_context.cpp
blob: 5f9f74494446484a2fd77969c71ddaebf1fb4671 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "multi_enum_search_context.hpp"
#include "string_search_context.h"

using ValueRef = vespalib::datastore::AtomicEntryRef;
using WeightedValueRef = search::multivalue::WeightedValue<vespalib::datastore::AtomicEntryRef>;

namespace search::attribute {

template class MultiEnumSearchContext<const char *, StringSearchContext, ValueRef>;

template class MultiEnumSearchContext<const char *, StringSearchContext, WeightedValueRef>;

}