00001 #pragma once 00002 00038 #include "zlib.h" // Ensure that this is in the include path 00039 00040 namespace AxPipe { 00041 namespace Stock { 00051 class CPipeInflate : public CPipe { 00052 longlong m_cb; 00053 z_stream m_Zstream; 00054 CSeg *m_pOutSeg; 00055 public: 00056 CPipeInflate(); 00057 virtual ~CPipeInflate(); 00058 bool OutOpen(); 00059 bool OutClose(); 00060 void Out(CSeg *pSeg); 00061 }; 00062 } 00063 }