mirror of
https://review.haiku-os.org/haiku
synced 2025-01-23 14:54:49 +01:00
19 lines
332 B
C
19 lines
332 B
C
|
/*
|
||
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef ZLIB_COMPRESSION_BASE_H
|
||
|
#define ZLIB_COMPRESSION_BASE_H
|
||
|
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
|
||
|
class ZlibCompressionBase {
|
||
|
public:
|
||
|
static status_t TranslateZlibError(int error);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // ZLIB_COMPRESSION_BASE_H
|