aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/index/indexbuilder.cpp
blob: 3517a28e69e33bda10e3251aa33489dd2028d96a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "indexbuilder.h"

namespace search::index {

IndexBuilder::IndexBuilder(const Schema &schema)
    : _schema(schema)
{
}

IndexBuilder::~IndexBuilder() = default;

}