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