aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/searchsummary/docsummary/i_juniper_converter.h
blob: a52002d37f526d7cf7faa9a3fe2a757529422da5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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 document { class StringFieldValue; }
namespace vespalib::slime { struct Inserter; }

namespace search::docsummary {

/**
 * Interface class for inserting a dynamic string based on an
 * annotated full string and query context.
 */
class IJuniperConverter
{
public:
    virtual ~IJuniperConverter() = default;
    virtual void convert(vespalib::stringref input, vespalib::slime::Inserter& inserter) = 0;
};

}