X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDocument.h;h=b5e44ad7adc6338f928e5c3e0e8688d6ba752ed1;hb=42ffbec07807b0fbd59283cf531a5456f6565b3d;hp=de3ff47b45e19841340ba946c3604bf06f1aa682;hpb=4a7ecad66f0c2b5d1c13bcb8cd2529891f87b34d;p=gdcm.git diff --git a/src/gdcmDocument.h b/src/gdcmDocument.h index de3ff47b..b5e44ad7 100644 --- a/src/gdcmDocument.h +++ b/src/gdcmDocument.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocument.h,v $ Language: C++ - Date: $Date: 2005/03/22 11:23:51 $ - Version: $Revision: 1.107 $ + Date: $Date: 2005/05/03 09:43:04 $ + Version: $Revision: 1.110 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -49,7 +49,7 @@ public: typedef std::list ListElements; // Loading -void Load( std::string const &filename ); + virtual bool Load( std::string const &filename ); // Dictionaries Dict *GetPubDict(); @@ -152,9 +152,20 @@ protected: /// are NOT loaded. static const unsigned int MAX_SIZE_LOAD_ELEMENT_VALUE; - /// List of element to Anonymize + /// List of elements to Anonymize ListElements AnonymizeList; + /// \brief Bit string integer (each one considered as a boolean) + /// Bit 0 : Skip Sequences, if possible + /// Bit 1 : Skip Shadow Groups if possible + /// Some more to add + int LoadMode; + + /// Whether the gdcm::Document is already parsed/loaded + /// - False from the creation of the gdcm::Document untill + /// gdcm::Document:Load() + bool IsDocumentAlreadyLoaded; + private: // Methods void Initialize(); @@ -205,11 +216,6 @@ private: // void BuildFlatHashTableRecurse( TagDocEntryHT &builtHT, // DocEntrySet *set ); - /// \brief Bit string integer (each one considered as a boolean) - /// Bit 0 : Skip Sequences, if possible - /// Bit 1 : Skip Shadow Groups if possible - /// Some more to add - int LoadMode; }; } // end namespace gdcm