KWStyle - itkPathIterator.txx
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkPathIterator.txx.html,v $
5   Language:  C++
6   Date:      $Date: 2006/01/17 19:15:43 $
7   Version:   $Revision: 1.4 $
8
9   Copyright (c) Insight Software Consortium. All rights reserved.
10   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
11
12      This software is distributed WITHOUT ANY WARRANTY; without even 
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14      PURPOSE.  See the above copyright notices for more information.
15
16 =========================================================================*/
17 DEF #ifndef _itkPathIterator_txx
18 DEF #define _itkPathIterator_txx
19
20 #include "itkPathIterator.h"
21 #include "itkOffset.h"        // for operator++
22
23 namespace itk
24 {
25
26 template<class TImage, class TPath>
27 PathIterator<TImage, TPath>
28 ::PathIterator(ImageType *imagePtr, const PathType  *pathPtr):
29 IND **PathConstIterator<TImage,TPath>(imagePtr, pathPtr)
30 {
31 }
32
33
34 template<class TImage, class TPath>
35 PathIterator<TImage, TPath> &
36 PathIterator<TImage, TPath>
37 ::operator=(const Self & it)
38 {
39   this->PathConstIterator<TImage,TPath>::operator=( it );
40   return *this;
41 }
42
43 // end namespace itk
44
45 #endif
46

Generated by KWStyle 1.0b on Tuesday January,17 at 02:14:38PM
© Kitware Inc.