1 // Copyright 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_AXIS_HPP 8 #define BOOST_HISTOGRAM_AXIS_HPP 9 10 /** 11 \file boost/histogram/axis.hpp 12 Includes all axis headers of the Boost.Histogram library. 13 14 Extra header not automatically included: 15 - [boost/histogram/axis/ostream.hpp][1] 16 17 [1]: histogram/reference.html#header.boost.histogram.axis.ostream_hpp 18 */ 19 20 #include <boost/histogram/axis/boolean.hpp> 21 #include <boost/histogram/axis/category.hpp> 22 #include <boost/histogram/axis/integer.hpp> 23 #include <boost/histogram/axis/regular.hpp> 24 #include <boost/histogram/axis/variable.hpp> 25 #include <boost/histogram/axis/variant.hpp> 26 27 #endif 28