00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkMetaEvent__h
00018 #define __itkMetaEvent__h
00019
00020 #include "metaEvent.h"
00021
00022
00023 namespace itk
00024 {
00025
00026 class MetaEvent : public metaEvent
00027 {
00028
00029 public:
00030
00031 MetaEvent(){};
00032 ~MetaEvent(){};
00033
00034 virtual void StartReading(unsigned int n) {metaEvent::StartReading(n);}
00035 virtual void StopReading() {metaEvent::StopReading();}
00036 virtual void SetCurrentIteration(unsigned int n) {metaEvent::SetCurrentIteration(n);}
00037
00038 private:
00039
00040
00041 };
00042
00043 }
00044
00045
00046 #endif