aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/termasstring.h
blob: 49a33b83234e8fdb08906b77173d0b40db22fb2e (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>

namespace search::query { class Node; }

namespace search::queryeval {

vespalib::string termAsString(const search::query::Node &term_node);
vespalib::stringref termAsString(const search::query::Node &term_node, vespalib::string & scratchPad);

}