aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/print/asciiconfigsnapshotwriter.h
blob: 6a002e8b45f7e7ea13ddb645716c35ab1eb08aa0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "configsnapshotwriter.h"
#include <vespa/vespalib/stllike/asciistream.h>

namespace config {

/**
 * Write a config snapshot to an ascii stream.
 */
class AsciiConfigSnapshotWriter : public ConfigSnapshotWriter {
public:
    AsciiConfigSnapshotWriter(vespalib::asciistream & os);
    bool write(const ConfigSnapshot & snapshot) override;
private:
    vespalib::asciistream & _os;
};

} // namespace config