]> Creatis software - gdcm.git/blobdiff - src/gdcmValEntry.cxx
ENH: /binary_write/ gdcm source. Now even on big endian we are writting little endian...
[gdcm.git] / src / gdcmValEntry.cxx
index aaf16de4d076b6fd718fe6352df86048d173a7f6..6293e5dc73b0740748ddeac3574a5a71fe95a1eb 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmValEntry.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/10/12 04:35:48 $
-  Version:   $Revision: 1.30 $
+  Date:      $Date: 2004/11/03 20:52:13 $
+  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
@@ -21,6 +21,8 @@
 #include "gdcmGlobal.h"
 #include "gdcmUtil.h"
 
+#include <fstream>
+
 namespace gdcm 
 {
 
@@ -174,7 +176,7 @@ void ValEntry::Print(std::ostream & os)
 /*
  * \brief   canonical Writer
  */
-void ValEntry::Write(FILE* fp, FileType filetype)
+void ValEntry::Write(std::ofstream* fp, FileType filetype)
 {
    DocEntry::Write(fp, filetype);
 
@@ -198,8 +200,7 @@ void ValEntry::Write(FILE* fp, FileType filetype)
       for (unsigned int i=0; i<tokens.size();i++)
       {
          uint16_t val_uint16 = atoi(tokens[i].c_str());
-         void* ptr = &val_uint16;
-         fwrite ( ptr,(size_t)2 ,(size_t)1 ,fp);
+         binary_write( *fp, val_uint16);
       }
       tokens.clear();
       return;
@@ -216,14 +217,15 @@ void ValEntry::Write(FILE* fp, FileType filetype)
       for (unsigned int i=0; i<tokens.size();i++)
       {
          uint32_t val_uint32 = atoi(tokens[i].c_str());
-         void* ptr = &val_uint32;
-         fwrite ( ptr,(size_t)4 ,(size_t)1 ,fp);
+         binary_write( *fp, val_uint32);
       }
       tokens.clear();
       return;
    } 
           
-   fwrite (GetValue().c_str(), (size_t)lgr ,(size_t)1, fp); // Elem value
+   fp->write (GetValue().c_str(), (size_t)lgr ); // Elem value
+//   assert( lgr == GetValue().size() ); // FIXME ?????
+//   dbg.Assert(2, lgr == strlen(GetValue().c_str()), "Should be equal" );
 } 
 
 //-----------------------------------------------------------------------------