Orfeo Toolbox  3.16
itkEventObject.cxx
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Insight Segmentation & Registration Toolkit
4  Module: $RCSfile: itkEventObject.cxx,v $
5  Language: C++
6  Date: $Date: 2003-09-10 14:29:06 $
7  Version: $Revision: 1.5 $
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 #include "itkEventObject.h"
18 
19 namespace itk
20 {
21 
22 void
24 ::Print(std::ostream& os) const
25 {
26  Indent indent;
27 
28  this->PrintHeader(os,0);
29  this->PrintSelf(os, indent.GetNextIndent());
30  this->PrintTrailer(os,0);
31 }
32 
36 void
38 ::PrintHeader(std::ostream& os, Indent indent) const
39 {
40  os << std::endl;
41  os << indent << "itk::" << this->GetEventName() << " (" << this << ")\n";
42 }
43 
44 
48 void
50 ::PrintTrailer(std::ostream& os, Indent indent) const
51 {
52  os << indent << std::endl;
53 }
54 
55 void
57 ::PrintSelf(std::ostream&, Indent) const
58 {
59 }
60 
61 } // end namespace itk

Generated at Sat Feb 2 2013 23:36:04 for Orfeo Toolbox with doxygen 1.8.1.1