Warning, file /include/boost/accumulators/framework/accumulator_concept.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_ACCUMULATORS_FRAMEWORK_ACCUMULATOR_CONCEPT_HPP_EAN_28_10_2005
0009 #define BOOST_ACCUMULATORS_FRAMEWORK_ACCUMULATOR_CONCEPT_HPP_EAN_28_10_2005
0010
0011 #include <boost/concept_check.hpp>
0012
0013 namespace boost { namespace accumulators
0014 {
0015
0016 template<typename Stat>
0017 struct accumulator_concept
0018 {
0019 void constraints()
0020 {
0021
0022 }
0023
0024 Stat stat;
0025 };
0026
0027 }}
0028
0029 #endif