aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/select/variablemap.h
blob: 631e1b837c07538ab8b6f6900dc7d0a41e71910f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

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

namespace document::select {

using VariableMapT = vespalib::hash_map<vespalib::string, double>;

class VariableMap : public VariableMapT {
public:
    using VariableMapT::VariableMapT;
};

}