From 012df72882e17f9223248aea1b674e04ba7cee12 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 21 Dec 2013 13:21:52 +0000 Subject: [PATCH] Mention BOOST Iostream. git-svn-id: https://svn.dealii.org/trunk@32078 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/news/changes.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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) +
-- 2.39.5