1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED
- #include <boost/type_traits/integral_constant.hpp>
- #include <boost/numeric/odeint/util/is_resizeable.hpp>
- #include <boost/numeric/odeint/util/resize.hpp>
- #include <boost/numeric/odeint/util/same_size.hpp>
- namespace boost {
- namespace numeric {
- namespace odeint {
- template< class V , class Enabler = void >
- struct state_wrapper
- {
- typedef state_wrapper< V > state_wrapper_type;
- V m_v;
- };
- }
- }
- }
- #endif
|