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

#include "configsnapshotreader.h"
#include <vespa/vespalib/stllike/string.h>

namespace config {

/**
 * Read config snapshots from file.
 */
class FileConfigSnapshotReader : public ConfigSnapshotReader {
public:
    FileConfigSnapshotReader(const vespalib::string & fileName);

    /**
     * Read a config snapshot.
     *
     * @return Snapshot containing the configs.
     */
    ConfigSnapshot read() override;
private:
    const vespalib::string _fileName;
};

} // namespace config