iw4x-client/src/Utils/Compression.hpp

19 lines
286 B
C++
Raw Normal View History

2017-01-20 08:36:52 -05:00
#pragma once
2016-01-09 09:30:13 -05:00
#define CHUNK 16384
#define DEFLATE_ZLIB false
#define DEFLATE_ZSTD true
2016-01-09 09:30:13 -05:00
2016-01-04 18:49:34 -05:00
namespace Utils
{
namespace Compression
{
2017-07-03 10:32:10 -04:00
class ZLib
2016-01-04 18:49:34 -05:00
{
public:
2018-12-17 08:29:18 -05:00
static std::string Compress(const std::string& data);
static std::string Decompress(const std::string& data);
};
2016-01-04 18:49:34 -05:00
};
}