X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDir.h;h=7a698763d2ea978b29def667c903e04d767582ea;hb=d92b9d9e464607d503446b6decf0713c6a712638;hp=f51c9f4cd0a8b4d8e3a1e5c73fe659d7241673b1;hpb=eba2d1d91686d8e5ca1e3dc019742032b450c3b2;p=gdcm.git diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index f51c9f4c..7a698763 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/07/21 05:02:11 $ - Version: $Revision: 1.66 $ + Date: $Date: 2005/10/25 14:52:33 $ + Version: $Revision: 1.69 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -50,12 +50,12 @@ typedef std::vector VectDocument; */ class GDCM_EXPORT DicomDir: public Document { + gdcmTypeMacro(DicomDir); + public: - typedef void Method(void*); + static DicomDir *New() {return new DicomDir();} - DicomDir(); - GDCM_LEGACY( DicomDir(std::string const &filename, bool parseDir = false) ); - ~DicomDir(); + typedef void Method(void*); GDCM_LEGACY( bool Load(std::string const &filename) ); bool Load( ); @@ -95,17 +95,25 @@ public: // 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, - DicomDir::Method *argDelete = NULL ); - void SetProgressMethod( DicomDir::Method *method, - void *arg = NULL, - DicomDir::Method *argDelete = NULL ); + void *arg = NULL ); + void SetProgressMethod( DicomDir::Method *method, + void *arg = NULL ); void SetEndMethod( DicomDir::Method *method, - void *arg = NULL, - DicomDir::Method *argDelete = NULL ); - void SetStartMethodArgDelete ( DicomDir::Method *m ); - void SetProgressMethodArgDelete( DicomDir::Method *m ); - void SetEndMethodArgDelete ( DicomDir::Method *m ); + 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; } @@ -115,9 +123,9 @@ public: bool IsAborted() { return Abort; } // Write - bool WriteDicomDir(std::string const &fileName); + bool Write(std::string const &fileName); - bool AnonymizeDicomDir(); + bool Anonymize(); /// Types of the DicomDirObject within the DicomDir typedef enum @@ -132,6 +140,9 @@ public: } DicomDirType; protected: + DicomDir(); + ~DicomDir(); + void CreateDicomDirChainedList(std::string const &path); void CallStartMethod(); void CallProgressMethod();