From: jpr Date: Mon, 11 Jul 2005 12:52:51 +0000 (+0000) Subject: Doxygenation X-Git-Tag: Version1.2.bp~333 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=3250f77adea3f06203acc2a5234b04f4ade00a56;p=gdcm.git Doxygenation --- diff --git a/src/gdcmDocEntrySet.h b/src/gdcmDocEntrySet.h index 1247e043..4a498133 100644 --- a/src/gdcmDocEntrySet.h +++ b/src/gdcmDocEntrySet.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntrySet.h,v $ Language: C++ - Date: $Date: 2005/06/17 12:36:07 $ - Version: $Revision: 1.51 $ + Date: $Date: 2005/07/11 12:52:51 $ + Version: $Revision: 1.52 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -70,11 +70,11 @@ public: /// \brief Remove all Entry in the entry set virtual void ClearEntry() = 0; /// \brief adds any type of entry to the entry set - virtual bool AddEntry(DocEntry *Entry) = 0; + virtual bool AddEntry(DocEntry *entry) = 0; /// \brief Removes any type of entry out of the entry set, and destroys it - virtual bool RemoveEntry(DocEntry *EntryToRemove) = 0; + virtual bool RemoveEntry(DocEntry *entryToRemove) = 0; /// \brief Removes any type of entry out of the entry set, DOESN'T destroy it - virtual bool RemoveEntryNoDestroy(DocEntry *EntryToRemove) = 0; + virtual bool RemoveEntryNoDestroy(DocEntry *entryToRemove) = 0; /// Gets the first entry of any type of set virtual DocEntry *GetFirstEntry()=0; /// Gets the next entry of any type of set diff --git a/src/gdcmDocument.h b/src/gdcmDocument.h index 1562eb4d..93d59e25 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/11 12:52:51 $ + Version: $Revision: 1.116 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -173,11 +173,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: