serialization.hpp 709 B

1234567891011121314151617181920212223
  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. #ifndef BOOST_HISTOGRAM_SERIALIZATION_HPP
  7. #define BOOST_HISTOGRAM_SERIALIZATION_HPP
  8. #include <boost/serialization/array.hpp>
  9. #include <boost/serialization/map.hpp>
  10. #include <boost/serialization/string.hpp>
  11. #include <boost/serialization/vector.hpp>
  12. /**
  13. \file boost/histogram/serialization.hpp
  14. Headers from
  15. [Boost.Serialization](https://www.boost.org/doc/libs/develop/libs/serialization/doc/index.html)
  16. needed to serialize STL types that are used internally by the Boost.Histogram classes.
  17. */
  18. #endif