Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:13

0001 // Copyright 2015-2019 Hans Dembinski
0002 //
0003 // Distributed under the Boost Software License, Version 1.0.
0004 // (See accompanying file LICENSE_1_0.txt
0005 // or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_HISTOGRAM_SERIALIZATION_HPP
0008 #define BOOST_HISTOGRAM_SERIALIZATION_HPP
0009 
0010 #include <boost/serialization/array.hpp>
0011 #include <boost/serialization/map.hpp>
0012 #include <boost/serialization/string.hpp>
0013 #include <boost/serialization/vector.hpp>
0014 
0015 /**
0016   \file boost/histogram/serialization.hpp
0017 
0018   Headers from
0019   [Boost.Serialization](https://www.boost.org/doc/libs/develop/libs/serialization/doc/index.html)
0020   needed to serialize STL types that are used internally by the Boost.Histogram classes.
0021  */
0022 
0023 #endif