X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDir.h;h=11f379f9359f89652004cc44ba7632e914f622ca;hb=80dc5ecf0d3915f6c2a5505a540ff14957e07cc5;hp=22ced06db8dfde4bbeb416385556b5c010b25ffb;hpb=278965e64eb49669b1a05493843f97144d8323b4;p=gdcm.git diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index 22ced06d..11f379f9 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/08/29 12:29:50 $ - Version: $Revision: 1.67 $ + Date: $Date: 2005/11/29 17:21:34 $ + Version: $Revision: 1.73 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -50,14 +50,12 @@ typedef std::vector VectDocument; */ class GDCM_EXPORT DicomDir: public Document { -public: - typedef void Method(void*); + gdcmTypeMacro(DicomDir); - DicomDir(); - GDCM_LEGACY( DicomDir(std::string const &filename, bool parseDir = false) ); - ~DicomDir(); +public: +/// \brief Constructs a DicomDir with a RefCounter + static DicomDir *New() {return new DicomDir();} - GDCM_LEGACY( bool Load(std::string const &filename) ); bool Load( ); void Print(std::ostream &os = std::cout, std::string const &indent = "" ); @@ -69,9 +67,6 @@ public: virtual void SetFileName(std::string const &fileName) { ParseDir = false; if (Filename != fileName) Filename = fileName, IsDocumentModified = true;} - - /// DEPRECATED : use SetDirectoryName - GDCM_LEGACY( void SetParseDir(bool parseDir) ); // Informations contained in the parser virtual bool IsReadable(); @@ -91,41 +86,19 @@ public: // Parsing void ParseDirectory(); - // Note: the DicomDir:: namespace prefix is needed by Swig in the - // following method declarations. Refer to gdcmPython/gdcm.i - // for the reasons of this unnecessary notation at C++ level. - void SetStartMethod( DicomDir::Method *method, - void *arg = NULL ); - void SetProgressMethod( DicomDir::Method *method, - void *arg = NULL ); - void SetEndMethod( DicomDir::Method *method, - void *arg = NULL ); - // Note: replace DicomDir::Method *method to void(*method)(void *) to - // avoid wrapping problems with the typemap conversions - void SetStartMethod( void(*method)(void *), // DicomDir::Method *method - void *arg, - void(*argDelete)(void *)); - void SetProgressMethod( void(*method)(void *), // DicomDir::Method *method - void *arg, - void(*argDelete)(void *)); - void SetEndMethod( void(*method)(void *), // DicomDir::Method *method - void *arg, - void(*argDelete)(void *)); - void SetStartMethodArgDelete ( DicomDir::Method *method ); - void SetProgressMethodArgDelete( DicomDir::Method *method ); - void SetEndMethodArgDelete ( DicomDir::Method *method ); - /// GetProgress GetProgress - float GetProgress() { return Progress; } + float GetProgress() const { return Progress; } /// AbortProgress AbortProgress void AbortProgress() { Abort = true; } /// IsAborted IsAborted bool IsAborted() { return Abort; } // Write - bool WriteDicomDir(std::string const &fileName); + bool Write(std::string const &fileName); - bool AnonymizeDicomDir(); + bool Anonymize(); + + virtual void Copy(DocEntrySet *set); /// Types of the DicomDirObject within the DicomDir typedef enum @@ -140,10 +113,10 @@ public: } DicomDirType; protected: + DicomDir(); + ~DicomDir(); + void CreateDicomDirChainedList(std::string const &path); - void CallStartMethod(); - void CallProgressMethod(); - void CallEndMethod(); private: void Initialize(); @@ -171,29 +144,9 @@ private: ListDicomDirPatient Patients; ListDicomDirPatient::iterator ItPatient; - /// pointer to the initialisation method for any progress bar - Method *StartMethod; - /// pointer to the incrementation method for any progress bar - Method *ProgressMethod; - /// pointer to the termination method for any progress bar - Method *EndMethod; - /// pointer to the ??? method for any progress bar - Method *StartMethodArgDelete; - /// pointer to the ??? method for any progress bar - Method* ProgressMethodArgDelete; - /// pointer to the ??? method for any progress bar - Method *EndMethodArgDelete; - /// pointer to the ??? for any progress bar - void *StartArg; - /// pointer to the ??? for any progress bar - void *ProgressArg; - /// pointer to the ??? for any progress bar - void *EndArg; - /// value of the ??? for any progress bar - float Progress; /// value of the ??? for any progress bar - bool Abort; bool ParseDir; + }; } // end namespace gdcm //-----------------------------------------------------------------------------