Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/gil/dynamic_step.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 //
0002 // Copyright 2005-2007 Adobe Systems Incorporated
0003 //
0004 // Distributed under the Boost Software License, Version 1.0
0005 // See accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt
0007 //
0008 #ifndef BOOST_GIL_DYNAMIC_STEP_HPP
0009 #define BOOST_GIL_DYNAMIC_STEP_HPP
0010 
0011 #include <boost/gil/concepts/dynamic_step.hpp>
0012 
0013 namespace boost { namespace gil {
0014 
0015 /// Base template for types that model HasDynamicXStepTypeConcept.
0016 template <typename IteratorOrLocatorOrView>
0017 struct dynamic_x_step_type;
0018 
0019 /// Base template for types that model HasDynamicYStepTypeConcept.
0020 template <typename LocatorOrView>
0021 struct dynamic_y_step_type;
0022 
0023 /// Base template for types that model both, HasDynamicXStepTypeConcept and HasDynamicYStepTypeConcept.
0024 ///
0025 /// \todo TODO: Is Locator allowed or practical to occur?
0026 template <typename View>
0027 struct dynamic_xy_step_type;
0028 
0029 }}  // namespace boost::gil
0030 
0031 #endif