X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmFileHelper.h;h=0bfd57ecb1a5160720707c2607ad1071b2207daa;hb=6f85922ff76cf9d44d9c084ce5001e1b7a54672f;hp=a6a098bb2c72076fcf1e0a12d3d4bbff1f380146;hpb=4f3b36b1db085e9be749d2cababa274d1e76b68d;p=gdcm.git diff --git a/src/gdcmFileHelper.h b/src/gdcmFileHelper.h index a6a098bb..0bfd57ec 100644 --- a/src/gdcmFileHelper.h +++ b/src/gdcmFileHelper.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFileHelper.h,v $ Language: C++ - Date: $Date: 2005/11/22 20:26:06 $ - Version: $Revision: 1.33 $ + Date: $Date: 2005/11/30 13:42:19 $ + Version: $Revision: 1.37 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -154,6 +154,10 @@ public: void SetKeepMediaStorageSOPClassUID (bool v) { KeepMediaStorageSOPClassUID = v; } // no GetKeepMediaStorageSOPClassUID() method, on purpose! + + void CallStartMethod(); + void CallProgressMethod(); + void CallEndMethod(); protected: FileHelper( ); @@ -190,6 +194,13 @@ private: uint8_t *GetRaw(); // members variables: +protected: + /// value of the ??? for any progress bar + float Progress; + mutable bool Abort; + +private: + /// gdcm::File to use to load the file File *FileInternal;