From 73235b749dd3cb7e3552e81f9398b17b9209efa4 Mon Sep 17 00:00:00 2001 From: jpr Date: Tue, 1 Feb 2005 13:11:49 +0000 Subject: [PATCH] Normalization --- src/gdcmDebug.h | 5 ++--- src/gdcmDicomDir.h | 12 ++++++------ src/gdcmDicomDirElement.h | 5 ++--- src/gdcmDicomDirImage.h | 7 +++---- src/gdcmDicomDirMeta.h | 7 +++---- src/gdcmDicomDirObject.h | 6 ++---- src/gdcmDictEntry.h | 5 ++--- src/gdcmDictSet.h | 7 +++---- src/gdcmDirList.h | 5 ++--- src/gdcmUtil.h | 7 +++---- 10 files changed, 28 insertions(+), 38 deletions(-) diff --git a/src/gdcmDebug.h b/src/gdcmDebug.h index 75d700ce..f181276a 100644 --- a/src/gdcmDebug.h +++ b/src/gdcmDebug.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.h,v $ Language: C++ - Date: $Date: 2005/02/01 10:29:54 $ - Version: $Revision: 1.27 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.28 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -31,7 +31,6 @@ namespace gdcm //----------------------------------------------------------------------------- /** - * \ingroup Debug * \brief Debug is an object for debugging in program. * It has 2 debugging modes : * - error : for bad library use, seriously wrong DICOM diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index b54a54d1..6d70471c 100644 --- a/src/gdcmDicomDir.h +++ b/src/gdcmDicomDir.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.h,v $ Language: C++ - Date: $Date: 2005/02/01 10:29:54 $ - Version: $Revision: 1.51 $ + Date: $Date: 2005/02/01 13:11:49 $ + 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 @@ -40,11 +40,11 @@ typedef std::vector VectDocument; //----------------------------------------------------------------------------- /** - * \ingroup DicomDir * \brief DicomDir defines an object representing a DICOMDIR in memory - * as a tree-like structure DicomDirPatient -> DicomDirStudy -> DicomDirSerie - * -> DicomDirImage - * + * as a tree-like structure DicomDirPatient + * -> DicomDirStudy + * -> DicomDirSerie + * -> DicomDirImage */ class GDCM_EXPORT DicomDir: public Document { diff --git a/src/gdcmDicomDirElement.h b/src/gdcmDicomDirElement.h index c2b1afe7..678db3eb 100644 --- a/src/gdcmDicomDirElement.h +++ b/src/gdcmDicomDirElement.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirElement.h,v $ Language: C++ - Date: $Date: 2005/01/26 09:49:53 $ - Version: $Revision: 1.23 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.24 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -65,7 +65,6 @@ public: void Print(std::ostream &os); /** - * \ingroup DicomDirElement * \brief returns a reference to the chained List * related to the META Elements of a DICOMDIR. */ diff --git a/src/gdcmDicomDirImage.h b/src/gdcmDicomDirImage.h index a212aeb2..2fc5738c 100644 --- a/src/gdcmDicomDirImage.h +++ b/src/gdcmDicomDirImage.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirImage.h,v $ Language: C++ - Date: $Date: 2005/01/20 16:16:42 $ - Version: $Revision: 1.15 $ + Date: $Date: 2005/02/01 13:11:49 $ + 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 @@ -25,7 +25,6 @@ namespace gdcm { //----------------------------------------------------------------------------- /** - * \ingroup DicomDirImage * \brief describes an IMAGE within a SERIE * (DicomDirSerie) of a given DICOMDIR (DicomDir) */ @@ -35,7 +34,7 @@ public: DicomDirImage(bool empty=false); ~DicomDirImage(); - void Print(std::ostream &os = std::cout, std::string const & indent = "" ); + void Print(std::ostream &os = std::cout, std::string const &indent = "" ); }; } // end namespace gdcm //----------------------------------------------------------------------------- diff --git a/src/gdcmDicomDirMeta.h b/src/gdcmDicomDirMeta.h index 3274a9af..ddeca253 100644 --- a/src/gdcmDicomDirMeta.h +++ b/src/gdcmDicomDirMeta.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirMeta.h,v $ Language: C++ - Date: $Date: 2005/01/20 16:16:42 $ - Version: $Revision: 1.17 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.18 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -26,7 +26,6 @@ namespace gdcm //----------------------------------------------------------------------------- /** - * \ingroup DicomDirMeta * \brief Meta Elements (group 0002) of a DicomDir */ class GDCM_EXPORT DicomDirMeta : public DicomDirObject @@ -35,7 +34,7 @@ public: DicomDirMeta(bool empty=false); ~DicomDirMeta(); - virtual void Print(std::ostream &os = std::cout, std::string const & indent = "" ); + virtual void Print(std::ostream &os = std::cout, std::string const &indent = "" ); virtual void WriteContent(std::ofstream *fp, FileType t); }; } // end namespace gdcm diff --git a/src/gdcmDicomDirObject.h b/src/gdcmDicomDirObject.h index 361f4964..d98c9375 100644 --- a/src/gdcmDicomDirObject.h +++ b/src/gdcmDicomDirObject.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirObject.h,v $ Language: C++ - Date: $Date: 2005/01/20 16:16:42 $ - Version: $Revision: 1.14 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.15 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -34,7 +34,6 @@ class DicomDirObject; typedef std::list ListContent; //----------------------------------------------------------------------------- /** - * \ingroup DicomDirObject * \brief Parent object for DicomDirPatient, DicomDirStudy, * DicomDirSerie, DicomDirImage, of a DicomDir */ @@ -45,7 +44,6 @@ public: protected: // Constructor and destructor are protected to avoid end user to // instanciate from this class. - // NO ! DicomDir needs to instanciate it! DicomDirObject(int depth = 1); ~DicomDirObject(); diff --git a/src/gdcmDictEntry.h b/src/gdcmDictEntry.h index e585e060..4674479b 100644 --- a/src/gdcmDictEntry.h +++ b/src/gdcmDictEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDictEntry.h,v $ Language: C++ - Date: $Date: 2005/02/01 10:41:33 $ - Version: $Revision: 1.32 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.33 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -26,7 +26,6 @@ namespace gdcm //----------------------------------------------------------------------------- /** - * \ingroup DictEntry * \brief * the DictEntry in an element contained by the Dict. * It contains : diff --git a/src/gdcmDictSet.h b/src/gdcmDictSet.h index 667a0434..0d4388a1 100644 --- a/src/gdcmDictSet.h +++ b/src/gdcmDictSet.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDictSet.h,v $ Language: C++ - Date: $Date: 2005/01/20 11:39:49 $ - Version: $Revision: 1.39 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.40 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -31,7 +31,6 @@ typedef std::map DictSetHT; //----------------------------------------------------------------------------- /** - * \ingroup DictSet * \brief Container for managing a set of loaded dictionaries (Dict). * \note Hopefully, sharing dictionaries should avoid * \par reloading an already loaded dictionary (saving time) @@ -44,7 +43,7 @@ public: DictSet(); ~DictSet(); - void Print(std::ostream &os = std::cout, std::string const & indent = "" ); + void Print(std::ostream &os = std::cout, std::string const &indent = "" ); // Probabely useless ! //EntryNamesList *GetPubDictEntryNames(); diff --git a/src/gdcmDirList.h b/src/gdcmDirList.h index 6e8ae620..865c4171 100644 --- a/src/gdcmDirList.h +++ b/src/gdcmDirList.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDirList.h,v $ Language: C++ - Date: $Date: 2005/02/01 09:46:15 $ - Version: $Revision: 1.21 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.22 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -36,7 +36,6 @@ typedef std::vector DirListType; // so GDCM_EXPORT keyword was removed for this class only /** - * \ingroup DirList * \brief List containing the file headers of all the gdcm readable files * found by exploring recursively a root directory. */ diff --git a/src/gdcmUtil.h b/src/gdcmUtil.h index 997b8752..9c53b359 100644 --- a/src/gdcmUtil.h +++ b/src/gdcmUtil.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmUtil.h,v $ Language: C++ - Date: $Date: 2005/01/28 09:37:29 $ - Version: $Revision: 1.51 $ + Date: $Date: 2005/02/01 13:11:49 $ + 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 @@ -26,7 +26,6 @@ namespace gdcm { /** - * \ingroup Globals Utility functions * \brief Here are some utility functions, belonging to the Util class, * dealing with strings, file names... that can be called * from anywhere by whomsoever they can help. @@ -77,7 +76,7 @@ private: GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint16_t &val); GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint32_t &val); GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const char *val); - GDCM_EXPORT std::ostream &binary_write(std::ostream &os, std::string const & val); + GDCM_EXPORT std::ostream &binary_write(std::ostream &os, std::string const &val); } // end namespace gdcm //----------------------------------------------------------------------------- #endif -- 2.48.1