00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __itkRegion_h
00021 #define __itkRegion_h
00022
00023 #include "itkObject.h"
00024
00025 namespace itk
00026 {
00027
00056 class ITKCommon_EXPORT Region
00057 {
00058 public:
00060 typedef Region Self;
00061
00063 enum RegionType {ITK_UNSTRUCTURED_REGION,ITK_STRUCTURED_REGION};
00064
00066 itkTypeMacro(Region, None);
00067
00070 virtual RegionType GetRegionType() const = 0;
00071
00073 virtual void Print(std::ostream& os, Indent indent=0) const;
00074 virtual ~Region() {}
00075 protected:
00076
00081 virtual void PrintSelf(std::ostream& os, Indent indent) const;
00082 virtual void PrintHeader(std::ostream& os, Indent indent) const;
00083 virtual void PrintTrailer(std::ostream& os, Indent indent) const;
00085
00086 private:
00087
00088 };
00089
00090 }
00091
00092 #endif
00093
00094