]> Creatis software - gdcm.git/blob - vtk/vtkGdcmReader.h
* vtk subdir added. Contains vtkGdcmReader.[cxx|h] a vtk class
[gdcm.git] / vtk / vtkGdcmReader.h
1 // $Header: /cvs/public/gdcm/vtk/vtkGdcmReader.h,v 1.1 2003/05/05 14:13:59 frog Exp $
2
3 #ifndef __vtkGdcmReader_h
4 #define __vtkGdcmReader_h
5
6 #include "vtkImageReader.h"
7
8 class VTK_EXPORT vtkGdcmReader : public vtkImageReader
9 {
10 public:
11   static vtkGdcmReader *New() {return new vtkGdcmReader;};
12   vtkTypeMacro(vtkGdcmReader, vtkImageReader);
13   void PrintSelf(ostream& os, vtkIndent indent);
14 protected:
15   vtkGdcmReader();
16   ~vtkGdcmReader();
17   void ExecuteData(vtkDataObject *output);
18   virtual void ExecuteInformation();
19 };
20 #endif
21