aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/get_weight_from_node.h
blob: e9643230d5fb33da65cf68142e867d962dbc864c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/searchlib/query/weight.h>

namespace search::query { class Node; }
namespace search::queryeval {

search::query::Weight getWeightFromNode(const search::query::Node &node);

}