X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntry.cxx;h=db3461fe04fcf541021e1ba28cfa0065b0df53df;hb=ba8a9ca0672ca189114be7abdef289648fdfdef6;hp=b6d8f0ad51c669fb6a1af01df1d094e43b9d3fba;hpb=1bae8d2ba47d1b9cc8acfb7b5ab82026e48275dd;p=gdcm.git diff --git a/src/gdcmDocEntry.cxx b/src/gdcmDocEntry.cxx index b6d8f0ad..db3461fe 100644 --- a/src/gdcmDocEntry.cxx +++ b/src/gdcmDocEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntry.cxx,v $ Language: C++ - Date: $Date: 2004/11/25 15:46:11 $ - Version: $Revision: 1.33 $ + Date: $Date: 2004/12/16 13:46:37 $ + Version: $Revision: 1.35 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -18,6 +18,7 @@ #include "gdcmDocEntry.h" #include "gdcmTS.h" +#include "gdcmVR.h" #include "gdcmGlobal.h" #include "gdcmUtil.h" @@ -47,7 +48,6 @@ DocEntry::DocEntry(DictEntry* in) // init some variables ReadLength = 0; UsableLength = 0; - PrintLevel = 0; } //----------------------------------------------------------------------------- @@ -59,8 +59,6 @@ DocEntry::DocEntry(DictEntry* in) */ void DocEntry::Print(std::ostream& os) { - PrintLevel = 2; // FIXME - size_t o; std::string st; TSKey v; @@ -251,7 +249,6 @@ void DocEntry::Copy (DocEntry* e) ReadLength = e->ReadLength; ImplicitVR = e->ImplicitVR; Offset = e->Offset; - PrintLevel = e->PrintLevel; // TODO : remove DocEntry SQDepth }