From 299a6d28daf6633475e5e42381edb6b6a780b0e7 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Thu, 10 Jan 2013 08:16:40 +0100 Subject: [PATCH] Removed method zLibDataCompressor::GetMaximumCompressionSpace() since it has no implementation. --- FileIO/RapidXmlIO/zLibDataCompressor.h | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/FileIO/RapidXmlIO/zLibDataCompressor.h b/FileIO/RapidXmlIO/zLibDataCompressor.h index 181d2f69bfc..ddafded2d61 100644 --- a/FileIO/RapidXmlIO/zLibDataCompressor.h +++ b/FileIO/RapidXmlIO/zLibDataCompressor.h @@ -1,5 +1,5 @@ /** - * 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 -- GitLab