Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'coding/gzip_compressor.hpp')
-rw-r--r--coding/gzip_compressor.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/coding/gzip_compressor.hpp b/coding/gzip_compressor.hpp
deleted file mode 100644
index 93f63d1ec6..0000000000
--- a/coding/gzip_compressor.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-#include "coding/coder.hpp"
-#include "base/base.hpp"
-#include "base/exception.hpp"
-
-DECLARE_EXCEPTION(CompressGZipException, StringCodingException);
-DECLARE_EXCEPTION(DecompressGZipException, StringCodingException);
-
-// Throws CompressGZipException on error.
-void CompressGZip(int level, char const * pSrc, size_t srcSize, string & dst);
-
-// Throws DecompressGZipException on error.
-void DecompressGZip(char const * pSrc, size_t srcSize, string & dst);
-
-// Returns -1 if dstSize is too small, otherwise the size of pDst used.
-// Throws DecompressGZipException on error.
-size_t DecompressGZipIntoFixedSize(char const * pSrc, size_t srcSize, char * pDst, size_t dstSize);