Skip to content
Snippets Groups Projects
Commit 299a6d28 authored by Tom Fischer's avatar Tom Fischer
Browse files

Removed method zLibDataCompressor::GetMaximumCompressionSpace() since it has no implementation.

parent ff26db73
No related branches found
No related tags found
No related merge requests found
/**
* Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net)
* Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.net)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/LICENSE.txt
......@@ -13,26 +13,20 @@
#ifndef ZLIBDATACOMPRESSOR_H
#define ZLIBDATACOMPRESSOR_H
class zLibDataCompressor
{
public:
unsigned long GetMaximumCompressionSpace(unsigned long size);
// Compression method required by vtkDataCompressor.
static unsigned long CompressBuffer(const unsigned char* uncompressedData,
unsigned long uncompressedSize,
unsigned char* compressedData,
unsigned long compressionSpace);
unsigned long uncompressedSize,
unsigned char* compressedData,
unsigned long compressionSpace);
// Decompression method required by vtkDataCompressor.
static unsigned long UncompressBuffer(const unsigned char* compressedData,
unsigned long compressedSize,
unsigned char* uncompressedData,
unsigned long uncompressedSize);
private:
unsigned long compressedSize,
unsigned char* uncompressedData,
unsigned long uncompressedSize);
};
#endif //ZLIBDATACOMPRESSOR_H
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment