Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / histogram / serialization.hpp
1 // Copyright 2015-2019 Hans Dembinski
2 //
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt
5 // or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 #ifndef BOOST_HISTOGRAM_SERIALIZATION_HPP
8 #define BOOST_HISTOGRAM_SERIALIZATION_HPP
9
10 #include <boost/serialization/array.hpp>
11 #include <boost/serialization/map.hpp>
12 #include <boost/serialization/string.hpp>
13 #include <boost/serialization/vector.hpp>
14
15 /**
16   \file boost/histogram/serialization.hpp
17
18   Headers from
19   [Boost.Serialization](https://www.boost.org/doc/libs/develop/libs/serialization/doc/index.html)
20   needed to serialize STL types that are used internally by the Boost.Histogram classes.
21  */
22
23 #endif