Go to the documentation of this file.
32 #ifndef vtkLZMADataCompressor_h
33 #define vtkLZMADataCompressor_h
35 #include "vtkIOCoreModule.h"
71 size_t uncompressedSize,
72 unsigned char* compressedData,
73 size_t compressionSpace)
override;
76 size_t compressedSize,
77 unsigned char* uncompressedData,
78 size_t uncompressedSize)
override;
void SetCompressionLevel(int compressionLevel) override
Get/Set the compression level.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
size_t UncompressBuffer(unsigned char const *compressedData, size_t compressedSize, unsigned char *uncompressedData, size_t uncompressedSize) override
size_t GetMaximumCompressionSpace(size_t size) override
Get the maximum space that may be needed to store data of the given uncompressed size after compressi...
a simple class to control print indentation
Abstract interface for data compression classes.
static vtkLZMADataCompressor * New()
int GetCompressionLevel() override
size_t CompressBuffer(unsigned char const *uncompressedData, size_t uncompressedSize, unsigned char *compressedData, size_t compressionSpace) override
~vtkLZMADataCompressor() override
Data compression using LZMA Utils.