aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/iblueprintregistry.h
blob: acb407ac81979a063a83699fa06a8a49984022a3 (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
24
25
26
27
28
29
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <memory>

namespace search::fef {

class Blueprint;

/**
 * This is an interface used during plugin setup to register blueprint
 * prototypes.
 **/
class IBlueprintRegistry
{
public:
    /**
     * Add a blueprint prototype to the registry.
     **/
    virtual void addPrototype(std::shared_ptr<Blueprint> proto) = 0;

    /**
     * Virtual destructor to allow safe subclassing.
     **/
    virtual ~IBlueprintRegistry() {}
};

}