aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/attribute_blueprint_factory.h
blob: 368af80a43dc275cc98aa084cfa934a3d2d830f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/searchlib/queryeval/searchable.h>

namespace search {

class AttributeBlueprintFactory : public queryeval::Searchable
{
public:
    std::unique_ptr<queryeval::Blueprint>
    createBlueprint(const queryeval::IRequestContext & requestContext,
                    const queryeval::FieldSpec &field,
                    const query::Node &term) override;
};

}  // namespace search