Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __itkIndent_h
00021 #define __itkIndent_h
00022
00023 #include "itkMacro.h"
00024 #include <iostream>
00025
00026 namespace itk
00027 {
00028
00041 class ITKCommon_EXPORT Indent
00042 {
00043 public:
00045 typedef Indent Self;
00046
00048 static Self* New();
00049
00051 void Delete() {delete this;}
00052
00054 Indent(int ind=0) {m_Indent=ind;}
00055
00057 static const char *GetNameOfClass() {return "Indent";}
00058
00061 Indent GetNextIndent();
00062
00064 friend ITKCommon_EXPORT std::ostream& operator<<(std::ostream& os, const Indent& o);
00065
00066 private:
00067 int m_Indent;
00068 };
00069
00070 }
00071
00072 #endif
00073