]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.cxx
ENH: slowly removing warnings
[gdcm.git] / src / gdcmDicomDirSerie.cxx
index ddeb9a08b137d2684414d2e194b830e7cab8d049..aadec9e81e488821371cf3b5fc5d0d3661e407d1 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/09/23 10:47:10 $
-  Version:   $Revision: 1.14 $
+  Date:      $Date: 2004/09/27 08:39:06 $
+  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
-  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
                                                                                 
      This software is distributed WITHOUT ANY WARRANTY; without even
      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
@@ -28,7 +28,7 @@
  * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it 
  *               to build the gdcmDocEntries)
  */
-gdcmDicomDirSerie::gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT):
+gdcmDicomDirSerie::gdcmDicomDirSerie(gdcmSQItem* s, TagDocEntryHT* ptagHT):
    gdcmDicomDirObject(ptagHT)
 {
    docEntries = s->GetDocEntries();
@@ -39,7 +39,7 @@ gdcmDicomDirSerie::gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT):
  * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it 
  *               to build the gdcmDocEntries)
  */
-gdcmDicomDirSerie::gdcmDicomDirSerie(TagDocEntryHT *ptagHT):
+gdcmDicomDirSerie::gdcmDicomDirSerie(TagDocEntryHTptagHT):
    gdcmDicomDirObject(ptagHT)
 {
 }
@@ -62,7 +62,7 @@ gdcmDicomDirSerie::~gdcmDicomDirSerie()
  * \brief   Prints the Object
  * @return
  */ 
-void gdcmDicomDirSerie::Print(std::ostream &os)
+void gdcmDicomDirSerie::Print(std::ostreamos)
 {
    os << "SERIE" << std::endl;
    gdcmDicomDirObject::Print(os);
@@ -83,7 +83,7 @@ void gdcmDicomDirSerie::Print(std::ostream &os)
  * \brief   Writes the Object
  * @return
  */ 
-void gdcmDicomDirSerie::Write(FILE *fp, FileType t)
+void gdcmDicomDirSerie::Write(FILEfp, FileType t)
 {
    gdcmDicomDirObject::Write(fp, t);
 
@@ -96,12 +96,12 @@ void gdcmDicomDirSerie::Write(FILE *fp, FileType t)
 /**
  * \brief   adds a new Image (with the basic elements) to a partially created DICOMDIR
  */
-gdcmDicomDirImage * gdcmDicomDirSerie::NewImage()
+gdcmDicomDirImage* gdcmDicomDirSerie::NewImage()
 {
    std::list<gdcmElement> elemList = 
       gdcmGlobal::GetDicomDirElements()->GetDicomDirImageElements();
 
-   gdcmDicomDirImage *st = new gdcmDicomDirImage(PtagHT);
+   gdcmDicomDirImagest = new gdcmDicomDirImage(PtagHT);
    FillObject(elemList);
    images.push_front(st);