1 // Copyright 2015-2018 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_HPP
8 #define BOOST_HISTOGRAM_HPP
9 
10 /**
11   \file boost/histogram.hpp
12   Includes all standard headers of the Boost.Histogram library.
13 
14   Extra headers not automatically included are:
15     - [boost/histogram/ostream.hpp][1]
16     - [boost/histogram/axis/ostream.hpp][2]
17     - [boost/histogram/accumulators/ostream.hpp][3]
18     - [boost/histogram/serialization.hpp][4]
19     - [boost/histogram/display.hpp][5]
20 
21   [1]: histogram/reference.html#header.boost.histogram.ostream_hpp
22   [2]: histogram/reference.html#header.boost.histogram.axis.ostream_hpp
23   [3]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp
24   [4]: histogram/reference.html#header.boost.histogram.serialization_hpp
25   [5]: histogram/reference.html#header.boost.histogram.display_hpp
26 */
27 
28 #include <boost/histogram/accumulators.hpp>
29 #include <boost/histogram/algorithm.hpp>
30 #include <boost/histogram/axis.hpp>
31 #include <boost/histogram/histogram.hpp>
32 #include <boost/histogram/indexed.hpp>
33 #include <boost/histogram/literals.hpp>
34 #include <boost/histogram/make_histogram.hpp>
35 #include <boost/histogram/make_profile.hpp>
36 #include <boost/histogram/storage_adaptor.hpp>
37 #include <boost/histogram/unlimited_storage.hpp>
38 
39 #endif
40