X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=vtk%2FvtkGdcmReader.h;h=a84f3b7bf1e5a703eb47a1b773d2f9f41c663b72;hb=cc819f3c8898bc77a37d0a5c0f938f07071f8c1d;hp=73386ba36e87936e2a523260ab9c1fd64b004aab;hpb=e4be15de84d96cad6e70e5b043c1bfdd37a18bcf;p=gdcm.git diff --git a/vtk/vtkGdcmReader.h b/vtk/vtkGdcmReader.h index 73386ba3..a84f3b7b 100644 --- a/vtk/vtkGdcmReader.h +++ b/vtk/vtkGdcmReader.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: vtkGdcmReader.h,v $ Language: C++ - Date: $Date: 2005/08/22 12:30:36 $ - Version: $Revision: 1.25 $ + Date: $Date: 2005/08/22 12:43:11 $ + Version: $Revision: 1.27 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -43,15 +43,21 @@ public: virtual void RemoveAllFileName(void); virtual void AddFileName(const char *name); virtual void SetFileName(const char *name); + + //BTX void SetCoherentFileList( std::vector *cfl) { CoherentFileList = cfl; } - //void SetCheckFileCoherenceLight(); + //ETX + vtkSetMacro(AllowLightChecking, int); vtkGetMacro(AllowLightChecking, int); vtkBooleanMacro(AllowLightChecking, int); + //BTX void SetUserFunction (VOID_FUNCTION_PUINT8_PFILE_POINTER userFunc ) - { UserFunction = userFunc; } + { UserFunction = userFunc; } + //ETX + // Description: // If this flag is set and the DICOM reader encounters a dicom file with // lookup table the data will be kept as unsigned chars and a lookuptable @@ -70,7 +76,9 @@ public: * of *each* Shadow Group. The parser will fail if the size is wrong ! * @param mode Load mode to be used */ - void SetLoadMode (int mode) { LoadMode = mode; } + vtkSetMacro(LoadMode, int); + vtkGetMacro(LoadMode, int); + vtkBooleanMacro(LoadMode, int); protected: vtkGdcmReader();