Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:53:10

0001 // Copyright 2018 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_AXIS_HPP
0008 #define BOOST_HISTOGRAM_AXIS_HPP
0009 
0010 /**
0011   \file boost/histogram/axis.hpp
0012   Includes all axis headers of the Boost.Histogram library.
0013 
0014   Extra header not automatically included:
0015     - [boost/histogram/axis/ostream.hpp][1]
0016 
0017   [1]: histogram/reference.html#header.boost.histogram.axis.ostream_hpp
0018 */
0019 
0020 #include <boost/histogram/axis/boolean.hpp>
0021 #include <boost/histogram/axis/category.hpp>
0022 #include <boost/histogram/axis/integer.hpp>
0023 #include <boost/histogram/axis/regular.hpp>
0024 #include <boost/histogram/axis/variable.hpp>
0025 #include <boost/histogram/axis/variant.hpp>
0026 
0027 #endif