aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/common/i_indexschema_inspector.h
blob: 54340d27e29d5b8e3c99ce38e019acea13835760 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 proton {

/**
 * Interface for inspector for an indexschema config.
 */
class IIndexschemaInspector {
public:
    virtual ~IIndexschemaInspector() { }
    virtual bool isStringIndex(const vespalib::string &name) const = 0;
};

} // namespace proton