aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/enumattribute.cpp
blob: 114ceca717f9046445ad218f968cbe608fd4bec3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "enumattribute.hpp"
#include "stringbase.h"
#include "integerbase.h"
#include "floatbase.h"

#include <vespa/log/log.h>
LOG_SETUP(".searchlib.attribute.enum_attribute");

namespace search {

template class EnumAttribute<StringAttribute>;
template class EnumAttribute<IntegerAttributeTemplate<int8_t>>;
template class EnumAttribute<IntegerAttributeTemplate<int16_t>>;
template class EnumAttribute<IntegerAttributeTemplate<int32_t>>;
template class EnumAttribute<IntegerAttributeTemplate<int64_t>>;
template class EnumAttribute<FloatingPointAttributeTemplate<float>>;
template class EnumAttribute<FloatingPointAttributeTemplate<double>>;

} // namespace search