aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/common/configupdate.cpp
blob: e18b8dbf993e697c8192d190ea92873cc82101de (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 "configupdate.h"

namespace config {

ConfigUpdate::ConfigUpdate(ConfigValue value, bool changed, int64_t generation)
    : _value(std::move(value)),
      _hasChanged(changed),
      _generation(generation)
{
}
ConfigUpdate::~ConfigUpdate() = default;

} // namespace config