1 /*
2  [auto_generated]
3  boost/numeric/odeint/integrate/null_observer.hpp
4 
5  [begin_description]
6  null_observer
7  [end_description]
8 
9  Copyright 2009-2011 Karsten Ahnert
10  Copyright 2009-2011 Mario Mulansky
11 
12  Distributed under the Boost Software License, Version 1.0.
13  (See accompanying file LICENSE_1_0.txt or
14  copy at http://www.boost.org/LICENSE_1_0.txt)
15  */
16 
17 
18 #ifndef BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_OBSERVER_HPP_INCLUDED
19 #define BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_OBSERVER_HPP_INCLUDED
20 
21 namespace boost {
22 namespace numeric {
23 namespace odeint {
24 
25 struct null_observer
26 {
27     template< class State , class Time >
operator ()boost::numeric::odeint::null_observer28     void operator()( const State& /* x */ , Time /* t */ ) const
29     {
30 
31     }
32 };
33 
34 } // namespace odeint
35 } // namespace numeric
36 } // namespace boost
37 
38 #endif // BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_OBSERVER_HPP_INCLUDED
39