]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlex_pimpl.h
Replace gzstream by boost::iostreams::gzip_(de)compressor: by Bo Peng (ben.bob@gmail...
[lyx.git] / src / lyxlex_pimpl.h
index 79f4393acef51621bf74b71f86cf0513b947fc12..e449c8b08ec5b34695489b15c11e846ca1546871 100644 (file)
 #include "lyxlex.h"
 
 #ifdef USE_COMPRESSION
-# include "support/gzstream.h"
+# include <boost/iostreams/filtering_streambuf.hpp>
+# include <boost/iostreams/filter/gzip.hpp>
+# include <boost/iostreams/device/file.hpp>
+namespace io = boost::iostreams;
 #endif
 
 #include <boost/utility.hpp>
@@ -63,7 +66,7 @@ public:
 
 #ifdef USE_COMPRESSION
        /// gz_ is only used to open files, the stream is accessed through is.
-       gz::gzstreambuf gz_;
+       io::filtering_istreambuf gz_;
 #endif
 
        /// the stream that we use.