aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/index/indexbuilder.cpp
blob: 30e535335accf1f9c34273228f3116c90c73850b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. 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;

}