X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vtk%2FvtkGdcmReader.h;h=284090c9a71041daa45a359b5c5dec0a5bfdcfc4;hb=b6e445adae1963909952eeef10ea7c1d2e0d3e0d;hp=490d3b1b048675573725f9ae5a1d0346f37a97e6;hpb=ddd66165b24a5e0cf5e30b3c6c6d967d2d8578b6;p=gdcm.git diff --git a/vtk/vtkGdcmReader.h b/vtk/vtkGdcmReader.h index 490d3b1b..284090c9 100644 --- a/vtk/vtkGdcmReader.h +++ b/vtk/vtkGdcmReader.h @@ -1,4 +1,4 @@ -// $Header: /cvs/public/gdcm/vtk/vtkGdcmReader.h,v 1.7 2003/07/04 17:12:43 regrain Exp $ +// $Header: /cvs/public/gdcm/vtk/vtkGdcmReader.h,v 1.9 2003/07/07 10:06:36 regrain Exp $ #ifndef __vtkGdcmReader_h #define __vtkGdcmReader_h @@ -27,6 +27,9 @@ protected: int CheckFileCoherence(); private: + void RemoveAllInternalFileName(void); + void AddInternalFileName(const char* name); + //BTX // Number of columns of the image/volume to be loaded int NumColumns; @@ -42,6 +45,14 @@ private: // or volume. The order in the list shall be the order of the images. std::list FileNameList; + // List of filenames created in ExecuteInformation and used in + // ExecuteData. + // If FileNameList isn't empty, InternalFileNameList is a copy of + // FileNameList + // Otherwise, InternalFileNameList correspond to the list of + // files patterned + std::list InternalFileNameList; + size_t LoadImageInMemory(std::string FileName, unsigned char * Dest, const unsigned long UpdateProgressTarget, unsigned long & UpdateProgressCount);