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

#include <vespa/config/frt/protocol.h>

namespace config {

struct CompressionInfo {
    CompressionInfo();
    CompressionType compressionType;
    uint32_t uncompressedSize;
    void deserialize(const vespalib::slime::Inspector & inspector);
};

}