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

}