]> Creatis software - gdcm.git/blobdiff - src/gdcmBinEntry.cxx
* src/*.cxx *.h Reference to License.htm fixed to License.html.
[gdcm.git] / src / gdcmBinEntry.cxx
index d15def828fbcb27e2a59ba0763fdebabd4be7cf1..f336472c5e7e6afd515bcadb808862fb3cc95d7e 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmBinEntry.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/09/23 10:17:26 $
-  Version:   $Revision: 1.30 $
+  Date:      $Date: 2004/09/27 08:39:05 $
+  Version:   $Revision: 1.32 $
                                                                                 
   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
@@ -71,7 +71,7 @@ void gdcmBinEntry::Print(std::ostream &os)
 {
    gdcmDocEntry::Print(os);
    std::ostringstream s;
-   void *binArea = GetBinArea();
+   voidbinArea = GetBinArea();
    if (binArea)
    {
       //s << " [" << GDCM_BINLOADED 
@@ -99,10 +99,10 @@ void gdcmBinEntry::Print(std::ostream &os)
  * @param fp already open file pointer
  * @param filetype type of the file to be written
 */
-void gdcmBinEntry::Write(FILE *fp, FileType filetype)
+void gdcmBinEntry::Write(FILEfp, FileType filetype)
 {
    gdcmDocEntry::Write(fp, filetype);
-   void *binArea = GetBinArea();
+   voidbinArea = GetBinArea();
    int lgr = GetLength();
    if (binArea)
    {