X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeader.cxx;h=51f36d756b53809fbbbea55fe2822499a8c884df;hb=412e45113080662e115ad6a5771ae607fab2e7ea;hp=4fe140503fa807c74990c141dab13f08cea6180d;hpb=7d3e5c5177382a629554c54bb4c3446e5eb5a576;p=gdcm.git diff --git a/src/gdcmHeader.cxx b/src/gdcmHeader.cxx index 4fe14050..51f36d75 100644 --- a/src/gdcmHeader.cxx +++ b/src/gdcmHeader.cxx @@ -1,4 +1,4 @@ -// $Header: /cvs/public/gdcm/src/Attic/gdcmHeader.cxx,v 1.87 2003/09/24 13:36:15 jpr Exp $ +// $Header: /cvs/public/gdcm/src/Attic/gdcmHeader.cxx,v 1.89 2003/09/24 13:52:46 jpr Exp $ //This is needed when compiling in debug mode #ifdef _MSC_VER @@ -1763,16 +1763,16 @@ void * gdcmHeader::LoadElementVoidArea(guint16 Group, guint16 Elem) { int l=Element->GetLength(); void * a = malloc(l); if(!a) { - cout << "Big Broblem (LoadElementVoidArea, malloc) " - << hex << Group << " " << Elem << std::endl; + std::cout << "Big Broblem (LoadElementVoidArea, malloc) " + << std::hex << Group << " " << Elem << std::endl; return NULL; } int res = PubElValSet.SetVoidAreaByNumber(a, Group, Elem); // TODO check the result size_t l2 = fread(a, 1, l ,fp); if(l != l2) { - cout << "Big Broblem (LoadElementVoidArea, fread) " - << hex << Group << " " << Elem << std::endl; + std::cout << "Big Broblem (LoadElementVoidArea, fread) " + << std::hex << Group << " " << Elem << std::endl; free(a); return NULL; } @@ -2030,7 +2030,7 @@ int gdcmHeader::GetLUTLength(void) { dbg.Verbose(0, "gdcmHeader::GetLUTLength: The CLUT R,G,B are not equal"); return 0; } - cout << "Lut Description " << LutDescriptionR <