]> 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 797605dc08f0002405a9e57789ea7509c4282f66..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>
 
+#include <fstream>
 #include <istream>
 #include <stack>
 #include <vector>
@@ -62,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.