accumulators.hpp 1.4 KB

123456789101112131415161718192021222324252627
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file accumulators.hpp
  3. /// Includes all of the Accumulators Framework
  4. //
  5. // Copyright 2005 Eric Niebler. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_ACCUMULATORS_ACCUMULATORS_HPP_EAN_28_10_2005
  9. #define BOOST_ACCUMULATORS_ACCUMULATORS_HPP_EAN_28_10_2005
  10. #include <boost/accumulators/framework/accumulator_set.hpp>
  11. #include <boost/accumulators/framework/accumulator_concept.hpp>
  12. #include <boost/accumulators/framework/accumulator_base.hpp>
  13. #include <boost/accumulators/framework/extractor.hpp>
  14. #include <boost/accumulators/framework/external.hpp>
  15. #include <boost/accumulators/framework/features.hpp>
  16. #include <boost/accumulators/framework/parameters/accumulator.hpp>
  17. #include <boost/accumulators/framework/parameters/sample.hpp>
  18. #include <boost/accumulators/framework/parameters/weight.hpp>
  19. #include <boost/accumulators/framework/parameters/weights.hpp>
  20. #include <boost/accumulators/framework/accumulators/external_accumulator.hpp>
  21. #include <boost/accumulators/framework/accumulators/droppable_accumulator.hpp>
  22. #include <boost/accumulators/framework/accumulators/reference_accumulator.hpp>
  23. #include <boost/accumulators/framework/accumulators/value_accumulator.hpp>
  24. #endif