From 7059f7f1ad9d1466d7b752a40cfeb95ba81aa3d8 Mon Sep 17 00:00:00 2001 From: jpr Date: Mon, 10 Jan 2005 17:17:52 +0000 Subject: [PATCH] Doxygenation --- src/gdcmDebug.cxx | 8 ++++---- src/gdcmDictEntry.cxx | 6 +++--- src/gdcmDocument.cxx | 16 +++++++--------- 3 files changed, 14 insertions(+), 16 deletions(-) diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index ee721664..f5ffc7df 100644 --- a/src/gdcmDebug.cxx +++ b/src/gdcmDebug.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.cxx,v $ Language: C++ - Date: $Date: 2005/01/07 19:20:38 $ - Version: $Revision: 1.15 $ + Date: $Date: 2005/01/10 17:17:52 $ + Version: $Revision: 1.16 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -27,7 +27,7 @@ static int DebugFlag = 0; //----------------------------------------------------------------------------- /** * \brief Accessor - * @param level Set the debug level + * @param flag Set the debug flag */ void Debug::SetDebugFlag (int flag) { @@ -36,7 +36,7 @@ void Debug::SetDebugFlag (int flag) /** * \brief Accessor - * @param level Get the debug level + * @param level Get the debug flag */ int Debug::GetDebugFlag () { diff --git a/src/gdcmDictEntry.cxx b/src/gdcmDictEntry.cxx index b74c9fdb..886dd489 100644 --- a/src/gdcmDictEntry.cxx +++ b/src/gdcmDictEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDictEntry.cxx,v $ Language: C++ - Date: $Date: 2005/01/07 22:06:47 $ - Version: $Revision: 1.37 $ + Date: $Date: 2005/01/10 17:17:52 $ + Version: $Revision: 1.38 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -86,7 +86,7 @@ void DictEntry::SetVR(TagName const &vr) /** * \brief If-and only if-the V(alue) M(ultiplicity) * \ is unset then overwrite it. - * @param vr New V(alue) M(ultiplicity) to be set. + * @param vm New V(alue) M(ultiplicity) to be set. */ void DictEntry::SetVM(TagName const &vm) { diff --git a/src/gdcmDocument.cxx b/src/gdcmDocument.cxx index ad2d33a9..d89207dd 100644 --- a/src/gdcmDocument.cxx +++ b/src/gdcmDocument.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocument.cxx,v $ Language: C++ - Date: $Date: 2005/01/10 17:09:49 $ - Version: $Revision: 1.170 $ + Date: $Date: 2005/01/10 17:17:52 $ + Version: $Revision: 1.171 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -1906,14 +1906,12 @@ void Document::SkipDocEntry(DocEntry *entry) /** * \brief Skips to the begining of the next Header Entry * \warning NOT end user intended method ! - * @param offset start of skipping - * @param readLgth length to skip - + * @param currentDocEntry entry to skip */ -void Document::SkipToNextDocEntry(DocEntry *newDocEntry) +void Document::SkipToNextDocEntry(DocEntry *currentDocEntry) { - Fp->seekg((long)(newDocEntry->GetOffset()), std::ios::beg); - Fp->seekg( (long)(newDocEntry->GetReadLength()),std::ios::cur); + Fp->seekg((long)(currentDocEntry->GetOffset()), std::ios::beg); + Fp->seekg( (long)(currentDocEntry->GetReadLength()),std::ios::cur); } /** @@ -1921,7 +1919,7 @@ void Document::SkipToNextDocEntry(DocEntry *newDocEntry) * the parser went Jabberwocky) one can hope improving things by * applying some heuristics. * @param entry entry to check - * @param foundLength fist assumption about length + * @param foundLength first assumption about length */ void Document::FixDocEntryFoundLength(DocEntry *entry, uint32_t foundLength) -- 2.48.1