BornAgain  1.19.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 reflection and scattering
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 #ifdef SWIG
16 #error no need to expose this header to Swig
17 #endif
18 
19 #ifndef USER_API
20 #ifndef BORNAGAIN_DEVICE_INPUTOUTPUT_BOOST_STREAMS_H
21 #define BORNAGAIN_DEVICE_INPUTOUTPUT_BOOST_STREAMS_H
22 
23 #include <boost/iostreams/copy.hpp>
24 #include <boost/iostreams/filtering_stream.hpp>
25 #ifdef _MSC_VER
26 #pragma warning(push)
27 #pragma warning(disable : 4244)
28 #endif
29 #include <boost/iostreams/filter/bzip2.hpp>
30 #include <boost/iostreams/filter/gzip.hpp>
31 #ifdef _MSC_VER
32 #pragma warning(pop)
33 #endif
34 
35 #endif // BORNAGAIN_DEVICE_INPUTOUTPUT_BOOST_STREAMS_H
36 #endif // USER_API