emsApplication/applications/emsConfigurer/ziputils.h

16 lines
330 B
C
Raw Normal View History

2024-09-21 13:57:16 +08:00
#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