 |
VTK
9.0.1
|
Go to the documentation of this file.
29 #ifndef vtkLZMADataCompressor_h
30 #define vtkLZMADataCompressor_h
33 #include "vtkIOCoreModule.h"
66 size_t CompressBuffer(
unsigned char const* uncompressedData,
size_t uncompressedSize,
67 unsigned char* compressedData,
size_t compressionSpace)
override;
70 unsigned char* uncompressedData,
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.