X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDir.h;h=0875bcfedcd3541a16e3a6754db914a7447560af;hb=04f3bbda36168ed865e04de8b94d2c60206f962a;hp=7a5af4303ca529569e1ec02a675d36c3cccb9d34;hpb=d5ebba38c596bd5a0514fc9e08fe8ac2a45482f5;p=gdcm.git diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index 7a5af430..0875bcfe 100644 --- a/src/gdcmDicomDir.h +++ b/src/gdcmDicomDir.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.h,v $ Language: C++ - Date: $Date: 2005/02/11 15:22:18 $ - Version: $Revision: 1.56 $ + Date: $Date: 2005/05/03 09:43:04 $ + Version: $Revision: 1.60 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -49,20 +49,22 @@ typedef std::vector VectDocument; class GDCM_EXPORT DicomDir: public Document { public: - typedef void(Method)(void*); + typedef void Method(void*); DicomDir( std::string const &filename, bool parseDir = false ); DicomDir(); ~DicomDir(); + bool Load( std::string const &filename ); void Print(std::ostream &os = std::cout, std::string const &indent = "" ); + void SetParseDir(bool parseDir) { ParseDir = parseDir; }; // Informations contained in the parser virtual bool IsReadable(); // Meta - DicomDirMeta *NewMeta(); + DicomDirMeta *NewMeta(); /// Returns a pointer to the DicomDirMeta for this DICOMDIR. DicomDirMeta *GetMeta() { return MetaElems; }; @@ -78,7 +80,7 @@ public: // Note: the DicomDir:: namespace prefix is needed by Swig in the // following method declarations. Refer to gdcmPython/gdcm.i - // for the reasons of this unecessary notation at C++ level. + // for the reasons of this unnecessary notation at C++ level. void SetStartMethod( DicomDir::Method *method, void *arg = NULL, DicomDir::Method *argDelete = NULL ); @@ -88,9 +90,9 @@ public: void SetEndMethod( DicomDir::Method *method, void *arg = NULL, DicomDir::Method *argDelete = NULL ); - void SetStartMethodArgDelete( DicomDir::Method *m ); + void SetStartMethodArgDelete ( DicomDir::Method *m ); void SetProgressMethodArgDelete( DicomDir::Method *m ); - void SetEndMethodArgDelete( DicomDir::Method *m ); + void SetEndMethodArgDelete ( DicomDir::Method *m ); /// GetProgress GetProgress float GetProgress() { return Progress; }; @@ -102,6 +104,8 @@ public: // Write bool WriteDicomDir(std::string const &fileName); + bool AnonymizeDicomDir(); + /// Types of the DicomDirObject within the DicomDir typedef enum { @@ -166,6 +170,7 @@ private: float Progress; /// value of the ??? for any progress bar bool Abort; + bool ParseDir; }; } // end namespace gdcm //-----------------------------------------------------------------------------