aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/document_subdb_reconfig.cpp
blob: 2fd222338e7dc0c32b7693a1fb06271c6c7575c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "document_subdb_reconfig.h"

namespace proton {

DocumentSubDBReconfig::DocumentSubDBReconfig(std::shared_ptr<Matchers> matchers_in)
    : _old_matchers(matchers_in),
      _new_matchers(matchers_in)
{
}

DocumentSubDBReconfig::~DocumentSubDBReconfig() = default;

}