From: jpr Date: Fri, 21 Oct 2005 07:38:57 +0000 (+0000) Subject: Doxygenation X-Git-Tag: OpenJPEG.Version1.2~282 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=05c174bd812b9e375823d6a95683cb5036795a02;p=gdcm.git Doxygenation --- diff --git a/src/gdcmDicomEntry.cxx b/src/gdcmDicomEntry.cxx index 9a3923c3..ef260fba 100644 --- a/src/gdcmDicomEntry.cxx +++ b/src/gdcmDicomEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomEntry.cxx,v $ Language: C++ - Date: $Date: 2005/10/20 08:58:17 $ - Version: $Revision: 1.2 $ + Date: $Date: 2005/10/21 07:38:57 $ + Version: $Revision: 1.3 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -33,14 +33,12 @@ namespace gdcm * @param group DICOM-Group Number * @param elem DICOM-Element Number * @param vr Value Representation - * @param vm Value Multiplicity - * @param name description of the element */ -DicomEntry::DicomEntry(const uint16_t &group,const uint16_t &elt, +DicomEntry::DicomEntry(const uint16_t &group,const uint16_t &elem, const VRKey &vr) { Tag.SetGroup(group); - Tag.SetElement(elt); + Tag.SetElement(elem); VR = vr; } diff --git a/src/gdcmDocument.cxx b/src/gdcmDocument.cxx index 4a82467d..3dc2920c 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/10/20 15:24:09 $ - Version: $Revision: 1.301 $ + Date: $Date: 2005/10/21 07:38:58 $ + Version: $Revision: 1.302 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -660,7 +660,7 @@ void Document::LoadEntryBinArea(uint16_t group, uint16_t elem) /** * \brief Loads (from disk) the element content * when a string is not suitable - * @param elem Entry whose binArea is going to be loaded + * @param entry Entry whose binArea is going to be loaded */ void Document::LoadEntryBinArea(DataEntry *entry) { diff --git a/src/gdcmSerieHelper.cxx b/src/gdcmSerieHelper.cxx index f62883e9..9fef62c6 100644 --- a/src/gdcmSerieHelper.cxx +++ b/src/gdcmSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2005/10/18 08:35:50 $ - Version: $Revision: 1.24 $ + Date: $Date: 2005/10/21 07:38:58 $ + Version: $Revision: 1.25 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -152,7 +152,7 @@ void SerieHelper::AddFileName(std::string const &filename) * of the gdcm::SerieHelper. * \warning : this method should be used by aware users only! * Passing a gdcm::File* has the same effect than passing a file name! - * \TODO : decide which one is wrong (the method, or the commentary)! + * \todo : decide which one is wrong (the method, or the commentary)! * the following comment doesn't match the method :-( * User is supposed to know the files he want to deal with * and consider them they belong to the same Serie @@ -535,6 +535,8 @@ XCoherentFileSetmap SerieHelper::SplitOnPosition(FileList *fileSet) * \brief Splits a SingleSerieUID File set Coherent according to the * value of a given Tag * @param fileSet File Set to be splitted + * @param group group number of the target Element + * @param elem element number of the target Element * \return std::map of 'Xcoherent' File sets */