#################################################################### Function Gzip_Out ####################################################################
| 579 | // Function Gzip_Out |
| 580 | //##################################################################### |
| 581 | std::ostream* |
| 582 | Gzip_Out(const std::string& filename,std::ios::openmode mode) |
| 583 | { |
| 584 | std::ofstream* outfile=new std::ofstream(filename.c_str(),mode); |
| 585 | return new ZIP_FILE_OSTREAM(0,*outfile); |
| 586 | } |
| 587 | //##################################################################### |
| 588 | |
| 589 | #else |