// #include #ifdef RDK_USE_BOOST_IOSTREAMS #include #include #include namespace RDKit { // gzstream from a file class RDKIT_RDSTREAMS_EXPORT gzstream : public boost::iostreams::filtering_istream { std::ifstream is; public: gzstream(const std::string &fname); }; } // namespace RDKit #endif