From: bangerth Date: Sat, 21 Dec 2013 13:21:52 +0000 (+0000) Subject: Mention BOOST Iostream. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=012df72882e17f9223248aea1b674e04ba7cee12;p=dealii-svn.git Mention BOOST Iostream. git-svn-id: https://svn.dealii.org/trunk@32078 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index a9a29235b4..a9df895967 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -50,6 +50,29 @@ inconvenience this causes.
    +
  1. New: deal.II now links with the + BOOST + Iostreams library. Among many other things, this allows to easily + read files that have been compressed, as in the following code snippet: + @code + #include + #include + #include + + ... + + boost::iostreams::filtering_istream in; + in.push(boost::iostreams::basic_gzip_decompressor<>()); + in.push(boost::iostreams::file_source("myfile.gz")); + + int i; + in >> i; + @endcode + More documentation on how to use BOOST Iostream can be found + in the documentation link referenced above. +
    + (Wolfgang Bangerth, 2013/12/21) +