X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDocument.h;h=c7c6fc71222b7940df5476736b617ecf78f80750;hb=25742c0834b017860b1a079436fc8e705129aec2;hp=1562eb4de0500ae779de5882f9840b614cf0be94;hpb=a770affb0ae95b1a1c0647ce7ee84f179e6714da;p=gdcm.git diff --git a/src/gdcmDocument.h b/src/gdcmDocument.h index 1562eb4d..c7c6fc71 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/07/08 10:13:38 $ - Version: $Revision: 1.115 $ + Date: $Date: 2005/07/30 18:19:44 $ + Version: $Revision: 1.118 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -30,7 +30,8 @@ #define NO_SEQ 0x00000001 // Don't load odd groups #define NO_SHADOW 0x00000002 // Don't load Sequences -#define NO_SHADOWSEQ 0x00000004 // Don't load Sequences if they belong to odd group +#define NO_SHADOWSEQ 0x00000004 // Don't load Sequences if they belong + // to an odd group // (*exclusive* from NO_SEQ and NO_SHADOW) namespace gdcm { @@ -50,7 +51,8 @@ public: typedef std::list ListElements; // Loading - virtual bool Load( std::string const &filename ); + //Deprecated : use SetFileName() + Load() + virtual bool Load( std::string const &filename ); virtual bool Load( ); // Dictionaries @@ -112,7 +114,7 @@ typedef std::list ListElements; * @param mode Load mode to be used */ void SetLoadMode (int mode) { if (LoadMode != mode) - LoadMode = mode, IsDocumentModified = true; } + LoadMode=mode, IsDocumentModified = true; } protected: // Methods @@ -173,11 +175,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: