...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Home | Libraries | People | FAQ | More |
boost::numeric::odeint::checked_observer — Adapter to combine observer and checker.
// In header: <boost/numeric/odeint/integrate/check_adapter.hpp> template<typename Observer, typename Checker> class checked_observer { public: // types typedef Observer observer_type; typedef Checker checker_type; // construct/copy/destruct checked_observer(observer_type &, checker_type &); // public member functions template<typename State, typename Time> void operator()(const State &, Time) const; };