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
00021
00022 #ifndef VTKGDCMTESTING_H
00023 #define VTKGDCMTESTING_H
00024
00025 #include "vtkObject.h"
00026
00027 class VTK_EXPORT vtkGDCMTesting : public vtkObject
00028 {
00029 public:
00030 static vtkGDCMTesting *New();
00031 vtkTypeRevisionMacro(vtkGDCMTesting,vtkObject);
00032 void PrintSelf(ostream& os, vtkIndent indent);
00033
00034 static const char *GetVTKDataRoot();
00035 static const char *GetGDCMDataRoot();
00036
00037 protected:
00038 vtkGDCMTesting();
00039 ~vtkGDCMTesting();
00040
00041 private:
00042 vtkGDCMTesting(const vtkGDCMTesting&);
00043 void operator=(const vtkGDCMTesting&);
00044 };
00045
00046 #endif
00047