aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/frt/compressioninfo.h
blob: a5dc756d29d2f989b6cc3c27680b03dc110d89e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. 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);
};

}