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

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);

}