]> Creatis software - gdcm.git/blobdiff - src/gdcmDocument.h
To avoid warnings
[gdcm.git] / src / gdcmDocument.h
index 711dc121451b5258ef433304195c07976918496b..d164af6a55497bedd792c2c64d74901d613cbbdc 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocument.h,v $
   Language:  C++
-  Date:      $Date: 2005/04/14 14:26:19 $
-  Version:   $Revision: 1.108 $
+  Date:      $Date: 2005/06/03 09:05:15 $
+  Version:   $Revision: 1.112 $
  
   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<Element> ListElements;
 
 // Loading
-   virtual void Load( std::string const &filename ); 
+   virtual bool Load( std::string const &filename ); 
 
 // Dictionaries
    Dict *GetPubDict();
@@ -98,8 +98,14 @@ typedef std::list<Element> ListElements;
 // Ordering of Documents
    bool operator<(Document &document);
 
-   /// \brief Sets the LoadMode as a boolean string
-   /// NO_SEQ, NO_SHADOW, ... (nothing more, right now)
+/**
+ * \brief Sets the LoadMode as a boolean string. 
+ *        NO_SEQ, NO_SHADOW, ... (nothing more, right now)
+ *        WARNING : before using NO_SHADOW, be sure *all* your files
+ *        contain accurate values in the 0x0000 element (if any) 
+ *        of *each* Shadow Group. The parser will fail if the size is wrong !
+ * @param   mode Load mode to be used    
+ */
    void SetLoadMode (int mode) { LoadMode = mode; }
 
 protected:
@@ -152,7 +158,7 @@ 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)
@@ -160,6 +166,11 @@ protected:
    ///        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