aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/searchsummary/docsummary/i_query_term_filter.h
blob: ce1523ae6530dc8091f0bba725b579161e976a31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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::docsummary {

/*
 * Interface class for checking if query term view indicates that
 * related query term is useful from the perspective of juniper.
 */
class IQueryTermFilter
{
public:
    virtual ~IQueryTermFilter() = default;

    virtual bool use_view(vespalib::stringref view) const = 0;
};

}