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 #ifndef MITKGEOMETRYDATA_H_HEADER_INCLUDED_C19C01E2
00020 #define MITKGEOMETRYDATA_H_HEADER_INCLUDED_C19C01E2
00021
00022 #include "mitkBaseData.h"
00023
00024 namespace mitk {
00025
00026
00027
00028
00029
00030
00031
00032 class MITK_CORE_EXPORT GeometryData : public BaseData
00033 {
00034 public:
00035 mitkClassMacro(GeometryData, BaseData);
00036
00037 itkNewMacro(Self);
00038
00039 virtual void UpdateOutputInformation();
00040
00041 virtual void SetRequestedRegionToLargestPossibleRegion();
00042
00043 virtual bool RequestedRegionIsOutsideOfTheBufferedRegion();
00044
00045 virtual bool VerifyRequestedRegion();
00046
00047 virtual void SetRequestedRegion(itk::DataObject *data);
00048
00049 virtual void CopyInformation(const itk::DataObject *data);
00050
00051 protected:
00052 GeometryData();
00053
00054 virtual ~GeometryData();
00055 };
00056
00057 }
00058 #endif