]> 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 d95367f75d0e6bb91cae082c32fb1bcbd3feec40..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>
@@ -60,9 +64,9 @@ public:
        /// fb_ is only used to open files, the stream is accessed through is.
        std::filebuf fb_;
 
-#ifdef HAVE_COMPRESSION
+#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.