iw4x-client/src/Utils/Compression.hpp

15 lines
205 B
C++
Raw Normal View History

2016-01-09 09:30:13 -05:00
#define CHUNK 16384
2016-01-04 18:49:34 -05:00
namespace Utils
{
namespace Compression
{
class ZLib
{
public:
static std::string Compress(std::string data);
static std::string Decompress(std::string data);
};
};
}