X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmContentEntry.cxx;h=a7d57867bdf82263d94f0e238711148449deb1c8;hb=91dcb54d8a62c9518b914e34475b96c76e5d70ee;hp=d48ac1c2e636abdd81dce78d57aeda0e16f7834a;hpb=643a8d9fe7dc8470db4cf7a6de639beebb339076;p=gdcm.git diff --git a/src/gdcmContentEntry.cxx b/src/gdcmContentEntry.cxx index d48ac1c2..a7d57867 100644 --- a/src/gdcmContentEntry.cxx +++ b/src/gdcmContentEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmContentEntry.cxx,v $ Language: C++ - Date: $Date: 2005/01/28 15:10:56 $ - Version: $Revision: 1.7 $ + Date: $Date: 2005/02/02 10:02:16 $ + Version: $Revision: 1.9 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -34,7 +34,8 @@ namespace gdcm * \brief Constructor for a given DictEntry * @param e Pointer to existing dictionary entry */ -ContentEntry::ContentEntry(DictEntry *e) : DocEntry(e) +ContentEntry::ContentEntry(DictEntry *e) + : DocEntry(e) { Value = GDCM_UNFOUND; } @@ -44,7 +45,7 @@ ContentEntry::ContentEntry(DictEntry *e) : DocEntry(e) * @param e Pointer to existing Doc entry */ ContentEntry::ContentEntry(DocEntry *e) - : DocEntry(e->GetDictEntry()) + : DocEntry(e->GetDictEntry()) { Copy(e); } @@ -56,6 +57,9 @@ ContentEntry::~ContentEntry () { } +//----------------------------------------------------------------------------- +// Print + //----------------------------------------------------------------------------- // Public void ContentEntry::Copy(DocEntry *doc)