aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/documentmetastore/document_meta_store_initializer_result.cpp
blob: 99b26a25d446eb5142fab126a88d021c11cca792 (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.

#include "document_meta_store_initializer_result.h"

namespace proton {

DocumentMetaStoreInitializerResult::
DocumentMetaStoreInitializerResult(std::shared_ptr<DocumentMetaStore> documentMetaStore_in,
                                   const search::TuneFileAttributes & tuneFile_in)
    : _documentMetaStore(std::move(documentMetaStore_in)),
      _tuneFile(tuneFile_in)
{
}


DocumentMetaStoreInitializerResult::~DocumentMetaStoreInitializerResult() = default;

} // namespace proton