axis.hpp 752 B

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