From: jpr Date: Wed, 31 Aug 2005 16:24:19 +0000 (+0000) Subject: Solve other minor Doxygen pb X-Git-Tag: Version1.2.bp~154 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=04e8ab90af5ff69eb35e51d56177a4d4c487e300;p=gdcm.git Solve other minor Doxygen pb --- diff --git a/src/gdcmDicomDir.cxx b/src/gdcmDicomDir.cxx index 8a2dbead..123b0fa6 100644 --- a/src/gdcmDicomDir.cxx +++ b/src/gdcmDicomDir.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.cxx,v $ Language: C++ - Date: $Date: 2005/08/31 09:29:12 $ - Version: $Revision: 1.158 $ + Date: $Date: 2005/08/31 16:24:19 $ + Version: $Revision: 1.159 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -215,6 +215,11 @@ bool DicomDir::Load(std::string const &fileName ) } /// DEPRECATED : use SetDirectoryName(dname) instead +/** + * \brief Loader. (DEPRECATED : kept not to break the API) + * @param paseDir Parse Dir + * @deprecated use SetDirectoryName(dname) instead + */ void DicomDir::SetParseDir(bool parseDir) { ParseDir = parseDir; diff --git a/src/gdcmSerieHelper.cxx b/src/gdcmSerieHelper.cxx index 27f6b509..c049e8b4 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/08/30 14:15:34 $ - Version: $Revision: 1.19 $ + Date: $Date: 2005/08/31 16:24:19 $ + Version: $Revision: 1.20 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -229,6 +229,10 @@ void SerieHelper::AddGdcmFile(File *header) * directory which would have a particular EchoTime==4.0. * This method is a user level, value is not required to be formatted as a DICOM * string + * @param group Group number of the target tag. + * @param elem Element number of the target tag. + * @param value value to be checked to exclude File + * @param op operator we want to use to check */ void SerieHelper::AddRestriction(uint16_t group, uint16_t elem, std::string const &value, int op) @@ -248,6 +252,9 @@ void SerieHelper::AddRestriction(uint16_t group, uint16_t elem, * directory which would have a particular EchoTime==4.0. * This method is a user level, value is not required to be formatted as a DICOM * string + * @param group Group number of the target tag. + * @param elem Element number of the target tag. + * @param value value to be checked to exclude File * @deprecated use : AddRestriction(uint16_t group, uint16_t elem, * std::string const &value, int op); */ diff --git a/src/gdcmUtil.cxx b/src/gdcmUtil.cxx index 0038698f..224c9d5d 100644 --- a/src/gdcmUtil.cxx +++ b/src/gdcmUtil.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmUtil.cxx,v $ Language: C++ - Date: $Date: 2005/08/31 15:54:50 $ - Version: $Revision: 1.161 $ + Date: $Date: 2005/08/31 16:24:19 $ + Version: $Revision: 1.162 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -218,8 +218,7 @@ bool Util::IsCleanArea(uint8_t *s, int l) /** * \brief Weed out a string from the non-printable characters (in order * to avoid corrupting the terminal of invocation when printing) - * @param s area to check (uint8_t is just for prototyping. feel free to cast) - * @param l area length to check + * @param s string to check (uint8_t is just for prototyping. feel free to cast) */ std::string Util::CreateCleanString(std::string const &s) {