aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/mapnames.h
blob: 7a2485472579508f1dc9615853d6738cd27652cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/stllike/string.h>

namespace search {

/**
 * A simple wrapper class for the named maps of properties.
 **/
struct MapNames
{
    /** name of rank feature property collection **/
    static const vespalib::string RANK;

    /** name of feature override property collection **/
    static const vespalib::string FEATURE;

    /** name of highlightterms property collection **/
    static const vespalib::string HIGHLIGHTTERMS;

    /** name of match property collection **/
    static const vespalib::string MATCH;

    /** name of cache property collection **/
    static const vespalib::string CACHES;

    /** name of model property collection **/
    static const vespalib::string MODEL;

    /** name of trace property collection **/
    static const vespalib::string TRACE;
};

} // namespace search