aimstil  5.0.5
ImageIteratorTraits.h
Go to the documentation of this file.
1 #ifndef TIL_IMAGE_ITERATORS_COMMON_H
2 #define TIL_IMAGE_ITERATORS_COMMON_H
3 
4 // til include
5 #include "til_common.h"
6 
7 
8 
9 namespace til
10 {
11 
12 
13  template < class T >
14  struct IteratorOf<ImageC<T> >
15  {
16  typedef ConstImageCLinearIterator<T> ConstLinear;
17  typedef ConstImageCVolumetricIterator<T> ConstVolumetric;
18  typedef ImageCLinearIterator<T> Linear;
19  typedef ImageCVolumetricIterator<T> Volumetric;
20  };
21 
22 
23 }
24 
25 #endif
26 
ImageCVolumetricIterator< T > Volumetric
ConstImageCVolumetricIterator< T > ConstVolumetric
Belongs to package Box Do not include directly, include til/Box.h instead.
Definition: Accumulator.h:10
General macros, definitions and functions.
ImageCLinearIterator< T > Linear
ConstImageCLinearIterator< T > ConstLinear
Image class using contiguous memory.