16 lines
330 B
C
16 lines
330 B
C
|
#ifndef ZIPUTILS_H
|
||
|
#define ZIPUTILS_H
|
||
|
#include <string>
|
||
|
|
||
|
class ZipUtils
|
||
|
{
|
||
|
public:
|
||
|
ZipUtils();
|
||
|
~ZipUtils();
|
||
|
|
||
|
static int CompressString(const char* in_str, size_t in_len, std::string& out_str, int level);
|
||
|
static int DecompressString(const char* in_str, size_t in_len, std::string& out_str);
|
||
|
};
|
||
|
|
||
|
#endif // ZIPUTILS_H
|