aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/proton_config_snapshot.cpp
blob: 021b3ef72c890b0216a54eb053b4a89a7345e9f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. 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