1 /* 2 [auto_generated] 3 libs/numeric/odeint/test/dummy_observers.hpp 4 5 [begin_description] 6 tba. 7 [end_description] 8 9 Copyright 2013 Karsten Ahnert 10 Copyright 2013 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 LIBS_NUMERIC_ODEINT_TEST_DUMMY_OBSERVERS_HPP_DEFINED 19 #define LIBS_NUMERIC_ODEINT_TEST_DUMMY_OBSERVERS_HPP_DEFINED 20 21 22 namespace boost { 23 namespace numeric { 24 namespace odeint { 25 26 27 struct dummy_observer 28 { 29 template< class State > operator ()boost::numeric::odeint::dummy_observer30 void operator()( const State &s ) const 31 { 32 } 33 }; 34 35 36 } // namespace odeint 37 } // namespace numeric 38 } // namespace boost 39 40 41 #endif // LIBS_NUMERIC_ODEINT_TEST_DUMMY_OBSERVERS_HPP_DEFINED 42