aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/proton_config_snapshot.cpp
blob: 2499711c88c5b9e2b6486bdbe130eff6e7ca3689 (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 "proton_config_snapshot.h"

namespace proton {

ProtonConfigSnapshot::ProtonConfigSnapshot(std::shared_ptr<BootstrapConfig> bootstrapConfig,
                                           DocumentDBConfigs documentDBConfigs)
    : _bootstrapConfig(std::move(bootstrapConfig)),
      _documentDBConfigs(std::move(documentDBConfigs))
{
}

ProtonConfigSnapshot::~ProtonConfigSnapshot()
{
}

} // namespace proton