struct mrpt::io::CCompressedOutputStream::Impl

Overview

struct Impl
{
    // fields

    std::string filename;
    CompressionOptions options;
    gzFile gz_file = nullptr;
    FILE* rawFile = nullptr;
    ZSTD_CStream* zstdStream = nullptr;
    std::vector<uint8_t> zstdOutBuffer;
    std::ofstream plainFile;
};