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 _MITKMESHSOURCE_H
00020 #define _MITKMESHSOURCE_H
00021
00022 #include "itkProcessObject.h"
00023 #include "MitkExtExports.h"
00024 #include "mitkMesh.h"
00025
00026 namespace mitk
00027 {
00038 class MitkExt_EXPORT MeshSource : public itk::ProcessObject
00039 {
00040 public:
00041 mitkClassMacro( MeshSource, itk::ProcessObject );
00042
00043 itkNewMacro( Self );
00044
00045 typedef mitk::Mesh OutputType;
00046
00047 typedef OutputType::Pointer OutputTypePointer;
00048
00055 virtual itk::DataObject::Pointer MakeOutput ( unsigned int idx );
00056
00061 virtual void SetOutput( OutputType* output );
00062
00068 virtual void SetOutput( unsigned int idx, OutputType* output );
00069
00074 virtual OutputType* GetOutput();
00075
00081 virtual OutputType* GetOutput ( unsigned int idx );
00082
00083 protected:
00084
00085 MeshSource();
00086
00087 virtual ~MeshSource();
00088
00089 };
00090
00091 }
00092 #endif // #define _MITKMESHSOURCE_H