/////////////////////////////////////////////////////////////////////////////// // with_error.hpp // // Copyright 2005 Eric Niebler. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_ACCUMULATORS_STATISTICS_WITH_ERROR_HPP_EAN_01_11_2005 #define BOOST_ACCUMULATORS_STATISTICS_WITH_ERROR_HPP_EAN_01_11_2005 #include #include #include #include #include #include namespace boost { namespace accumulators { namespace detail { template struct error_of_tag { typedef tag::error_of type; }; } /////////////////////////////////////////////////////////////////////////////// // with_error // template struct with_error : mpl::transform_view< mpl::vector , detail::error_of_tag > { }; }} // namespace boost::accumulators #endif