aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/features/setup.h
blob: 2482c4f2bc63ddaf9171f19a6468b1e0f784863b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/searchlib/fef/blueprint.h>
#include <vespa/searchlib/fef/iblueprintregistry.h>

namespace search::features {

/**
 * Adds prototypes for all features in this library to the given registry.
 *
 * @param registry The blueprint registry to add prototypes to.
 **/
void setup_search_features(fef::IBlueprintRegistry & registry);

}