aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/print/configdatabuffer.cpp
blob: 3c85791a764e2b2d61f7cc29a575c9b9d09a0876 (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 "configdatabuffer.h"
#include <vespa/vespalib/data/slime/slime.h>

namespace config {

ConfigDataBuffer::ConfigDataBuffer() :
    _slime(std::make_unique<vespalib::Slime>())
{ }

ConfigDataBuffer::~ConfigDataBuffer() { }

} // namespace config