X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDictEntry.cxx;h=7699a4a872272c3a8743ef76f640932cf0460510;hb=cfd7023dd0efe6d0cf17cdc1b31bbf17ac8a9ade;hp=a4bb7060bcdb5a1a0c98042ccc1392e6abb2a88e;hpb=f81c61f9ca9f0c33f35e04f2c1c1ffa11a09db59;p=gdcm.git diff --git a/src/gdcmDictEntry.cxx b/src/gdcmDictEntry.cxx index a4bb7060..7699a4a8 100644 --- a/src/gdcmDictEntry.cxx +++ b/src/gdcmDictEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDictEntry.cxx,v $ Language: C++ - Date: $Date: 2005/01/13 16:35:37 $ - Version: $Revision: 1.39 $ + Date: $Date: 2005/01/16 04:50:41 $ + Version: $Revision: 1.41 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -52,7 +52,7 @@ DictEntry::DictEntry(uint16_t group, uint16_t element, //----------------------------------------------------------------------------- // Print -void DictEntry::Print(std::ostream &os) +void DictEntry::Print(std::ostream &os, std::string const & ) { std::string vr; std::ostringstream s; @@ -71,7 +71,7 @@ void DictEntry::Print(std::ostream &os) } s << "[" << GetName()<< "]"; - os << s.str(); + os << s.str() << std::endl; } //-----------------------------------------------------------------------------