]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/histogram/accumulators.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / histogram / accumulators.hpp
1 // Copyright 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_ACCUMULATORS_HPP
8 #define BOOST_HISTOGRAM_ACCUMULATORS_HPP
9
10 /**
11 \file boost/histogram/accumulators.hpp
12 Includes all accumulator headers of the Boost.Histogram library.
13
14 Extra header not automatically included:
15 - [boost/histogram/accumulators/ostream.hpp][1]
16
17 [1]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp
18 */
19
20 #include <boost/histogram/accumulators/mean.hpp>
21 #include <boost/histogram/accumulators/sum.hpp>
22 #include <boost/histogram/accumulators/thread_safe.hpp>
23 #include <boost/histogram/accumulators/weighted_mean.hpp>
24 #include <boost/histogram/accumulators/weighted_sum.hpp>
25
26 #endif