Wittyshare  0.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WsCompressor.h
Go to the documentation of this file.
1 /*
2  *
3  * Filename: WsCompressor.h
4  *
5  * Description:
6  *
7  * Created: 07/25/2012 09:26:05 AM
8  *
9  * Author: Benoit Daccache, ben.daccache@gmail.com
10  *
11  */
12 
13 #ifndef WS_COMPRESSOR_H__
14 #define WS_COMPRESSOR_H__
15 
16 #include <iostream>
17 
24 class WsCompressor {
25 public:
32  long compress(const std::string& data, char** compressedData);
33 
34 
35 };
36 
37 #endif
Used to compress data.
Definition: WsCompressor.h:24
long compress(const std::string &data, char **compressedData)
compress the input string (data) and puts it in compressedData.