]> Creatis software - gdcm.git/commitdiff
Normalization
authorjpr <jpr>
Tue, 1 Feb 2005 13:11:49 +0000 (13:11 +0000)
committerjpr <jpr>
Tue, 1 Feb 2005 13:11:49 +0000 (13:11 +0000)
src/gdcmDebug.h
src/gdcmDicomDir.h
src/gdcmDicomDirElement.h
src/gdcmDicomDirImage.h
src/gdcmDicomDirMeta.h
src/gdcmDicomDirObject.h
src/gdcmDictEntry.h
src/gdcmDictSet.h
src/gdcmDirList.h
src/gdcmUtil.h

index 75d700ce90af33f52501e949ed2896c9c7885c7e..f181276accd6fb37df5bc539b66ba9cc9f0f489c 100644 (file)
@@ -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
index b54a54d1799225d4c1247c3f9ad4d94b6fb925c6..6d70471cccd8c294e066ffcce052a0246e137110 100644 (file)
@@ -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<Document *>  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
 {
index c2b1afe7bc2e0998c3909ef71b89364593e14aad..678db3ebc08b404da00d4324c6d4536a27b19651 100644 (file)
@@ -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.
     */
index a212aeb2e8934a8edb65f075e326e379de04a38b..2fc5738c847a7092386249e141b8b375a6f8109e 100644 (file)
@@ -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
 //-----------------------------------------------------------------------------
index 3274a9af65860fc72b32f082948eae7a9054bdc3..ddeca2534c18372011e97033a96170caa6000609 100644 (file)
@@ -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
index 361f49645cab7daf8d7ea0d84bfa8f964140305a..d98c93757e09fbfdbe4db478476ec52f28c43ff6 100644 (file)
@@ -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<DicomDirObject *> 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();
 
index e585e0603fecb418080fe2386cb08295aeecb803..4674479b880e972555090bf38c503d1ff0c046ac 100644 (file)
@@ -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 :
index 667a04344238d399cf88d6a1891aa0a83f6f4579..0d4388a14867f49fdb016acac3489c3e480b68f0 100644 (file)
@@ -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<DictKey, Dict*> 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();
index 6e8ae620a29cb12369b362644a74aa86a75237a4..865c4171994f0150ac3a7b3f428f4b4191790d6c 100644 (file)
@@ -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<std::string> 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. 
  */
index 997b8752071737828f232eafd9c00cc2789709f9..9c53b35905749e176cf6b69a9e9693ed63e4e0bc 100644 (file)
@@ -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