]> Creatis software - gdcm.git/blobdiff - src/gdcmFile.cxx
cout replaced by std::cout
[gdcm.git] / src / gdcmFile.cxx
index a864ff554eb74eef882b267d643042419149b33c..43d8c3a19f612626015becf4bf28cd2b8a86b343 100644 (file)
@@ -151,7 +151,7 @@ bool gdcmFile::ParsePixelData(void) {
 
       // JPEG Image
 
-      cout << "JPEG image" << std::endl;
+      std::cout << "JPEG image" << std::endl;
       ftellRes=ftell(fp);
       fread(&ItemTagGr,2,1,fp);  // Reading (fffe) : Basic Offset Table Item Tag Gr
       fread(&ItemTagEl,2,1,fp);  // Reading (e000) : Basic Offset Table Item Tag El
@@ -220,7 +220,7 @@ bool gdcmFile::ParsePixelData(void) {
 
       // RLE Image
 
-      cout << "RLE image" << std::endl;
+      std::cout << "RLE image" << std::endl;
       long RleSegmentLength[15],fragmentLength;
       guint32 nbRleSegments;
       guint32 RleSegmentOffsetTable[15];
@@ -538,7 +538,7 @@ bool gdcmFile::ReadPixelData(void* destination) {
          } 
          
       //(char *) destination += taille * nBytes;
-      //cout << "destination" << destination << "\n";
+      //std::cout << "destination" << destination << std::endl;
       }
                 
       return res;