]> Creatis software - gdcm.git/blobdiff - src/gdcmDocument.h
COMP: Fix compilation on Win32. All symbols MUST be resolved
[gdcm.git] / src / gdcmDocument.h
index 1562eb4de0500ae779de5882f9840b614cf0be94..d032a38859e42591cb6dad1aec99268f7939b050 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocument.h,v $
   Language:  C++
-  Date:      $Date: 2005/07/08 10:13:38 $
-  Version:   $Revision: 1.115 $
+  Date:      $Date: 2005/07/17 04:28:55 $
+  Version:   $Revision: 1.117 $
  
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -50,7 +50,8 @@ public:
 typedef std::list<Element> ListElements;
 
 // Loading
-   virtual bool Load( std::string const &filename );
+   //Deprecated : use SetFileName() + Load()
+   virtual bool Load( std::string const &filename ); 
    virtual bool Load( ); 
 
 // Dictionaries
@@ -173,11 +174,12 @@ protected:
    ///        Probabely, some more to add
    int LoadMode;
    
-   /// Whether the gdcm::Document is already parsed/loaded
-   /// False from the creation of the gdcm::Document untill 
+   /// \brief Whether the gdcm::Document is already parsed/loaded :
+   /// False from the creation of the gdcm::Document untill 
    ///   gdcm::Document:Load()
    bool IsDocumentAlreadyLoaded; // FIXME : probabely useless now
 
+   /// Whether the gdcm::Document was modified since the last Load()
    bool IsDocumentModified;
 
 private: