| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itkRegion.cxx.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:46 $ |
| 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 |
DEF |
=========================================================================*/ |
| 20 |
|
#include "itkRegion.h" |
| 21 |
|
|
| 22 |
|
namespace itk |
| 23 |
|
{ |
| 24 |
|
|
| 25 |
|
void |
| 26 |
|
Region |
| 27 |
|
::Print(std::ostream& os, Indent indent) const |
| 28 |
|
{ |
| 29 |
|
this->PrintHeader(os,indent); |
| 30 |
|
this->PrintSelf(os, indent.GetNextIndent()); |
| 31 |
|
this->PrintTrailer(os,indent); |
| 32 |
|
} |
| 33 |
|
|
| 34 |
|
void |
| 35 |
|
Region |
| 36 |
|
::PrintHeader(std::ostream& os, Indent indent) const |
| 37 |
|
{ |
| 38 |
|
os << indent << this->GetNameOfClass() << " (" << this << ")\n"; |
| 39 |
|
} |
| 40 |
|
|
| 41 |
|
void |
| 42 |
|
Region |
| 43 |
|
::PrintTrailer(std::ostream& itkNotUsed(os), Indent itkNotUsed(indent)) const |
| 44 |
|
{ |
| 45 |
|
} |
| 46 |
|
|
| 47 |
|
void |
| 48 |
|
Region |
| 49 |
|
::PrintSelf(std::ostream&, Indent) const |
| 50 |
|
{ |
| 51 |
|
} |
| 52 |
|
|
| 53 |
|
} // end namespace itk |
| 54 |
|
|
| 55 |
EOF |
|