KWStyle - itkPath.txx
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkPath.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   Portions of this code are covered under the VTK copyright.
13   See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.
14
15      This software is distributed WITHOUT ANY WARRANTY; without even 
16      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
17 IND *****PURPOSE.  See the above copyright notices for more information.
18
19 =========================================================================*/
20 DEF #ifndef _itkPath_txx
21 DEF #define _itkPath_txx
22
23 #include "itkPath.h"
24 #include "itkProcessObject.h"
25
26 WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM /* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** */
27 WCM,WCM /* ** **  Much of the code in this file is based on itkPointSet.txx  ** ** */
28 WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM,WCM /* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** */
29
30 namespace itk
31 {
32
33 /**
34  * A protected default constructor allows the New() routine to create an
35  * instance of PointSet.  All the containers are initialized to non-existent.
36  */
37 template <class TInput, class TOutput, unsigned int VDimension>
38 Path<TInput, TOutput, VDimension>
39 ::Path()
40 {
41   m_ZeroOffset.Fill(0);
42   m_ZeroIndex.Fill(0);
43 }
44
45 template <class TInput, class TOutput, unsigned int VDimension>
46 void
47 Path<TInput, TOutput, VDimension>
48 ::PrintSelf(std::ostream &os, Indent indent) const
49 {
50   this->Superclass::PrintSelf(os,indent);
51
52   os << indent << "ZeroOffset: " << m_ZeroOffset << std::endl;
53   os << indent << "ZeroIndex: " << m_ZeroIndex << std::endl;
54 }
55
56 // end namespace itk
57
58 #endif
59

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