aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/test/make_attribute_map_lookup_node.h
blob: baa074b40044d7ce4734658bba742a2c526a00d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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>
#include <memory>

namespace search::expression { class AttributeNode; }

namespace search::expression::test {

std::unique_ptr<AttributeNode>
makeAttributeMapLookupNode(vespalib::stringref attributeName);

}