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 __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
00075 Region() {}
00076 virtual ~Region() {}
00077
00078 protected:
00083 virtual void PrintSelf(std::ostream& os, Indent indent) const;
00084 virtual void PrintHeader(std::ostream& os, Indent indent) const;
00085 virtual void PrintTrailer(std::ostream& os, Indent indent) const;
00087
00088 private:
00089
00090 };
00091
00092 }
00093
00094 #endif
00095