BornAgain  1.18.0
Simulate and fit neutron and x-ray scattering at grazing incidence
boost_streams.h
Go to the documentation of this file.
1 // ************************************************************************** //
2 //
3 // BornAgain: simulate and fit scattering at grazing incidence
4 //
5 //! @file Device/InputOutput/boost_streams.h
6 //! @brief Contains boost streams related headers
7 //!
8 //! @homepage http://www.bornagainproject.org
9 //! @license GNU General Public License v3 or higher (see COPYING)
10 //! @copyright Forschungszentrum Jülich GmbH 2018
11 //! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
12 //
13 // ************************************************************************** //
14 
15 #ifndef BORNAGAIN_CORE_INPUTOUTPUT_BOOST_STREAMS_H
16 #define BORNAGAIN_CORE_INPUTOUTPUT_BOOST_STREAMS_H
17 
18 #include <boost/iostreams/copy.hpp>
19 #include <boost/iostreams/filtering_stream.hpp>
20 #ifdef _MSC_VER
21 #pragma warning(push)
22 #pragma warning(disable : 4244)
23 #endif
24 #include <boost/iostreams/filter/bzip2.hpp>
25 #include <boost/iostreams/filter/gzip.hpp>
26 #ifdef _MSC_VER
27 #pragma warning(pop)
28 #endif
29 
30 #endif // BORNAGAIN_CORE_INPUTOUTPUT_BOOST_STREAMS_H