12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_GIL_DYNAMIC_STEP_HPP
- #define BOOST_GIL_DYNAMIC_STEP_HPP
- #include <boost/gil/concepts/dynamic_step.hpp>
- namespace boost { namespace gil {
- template <typename IteratorOrLocatorOrView>
- struct dynamic_x_step_type;
- template <typename LocatorOrView>
- struct dynamic_y_step_type;
- template <typename View>
- struct dynamic_xy_step_type;
- }}
- #endif
|