]> Creatis software - gdcm.git/blobdiff - src/gdcmDefaultDicts.cxx.in
Forgot to update this one
[gdcm.git] / src / gdcmDefaultDicts.cxx.in
index 2622cc23bae40ba19df21bcd226f67c3a5f53277..62fdb4e3514f406ca137a63e3c24104a2749bc77 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDefaultDicts.cxx.in,v $
   Language:  C++
-  Date:      $Date: 2005/04/05 10:56:25 $
-  Version:   $Revision: 1.9 $
+  Date:      $Date: 2007/05/23 14:18:08 $
+  Version:   $Revision: 1.13 $
 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -26,7 +26,7 @@
 #include "gdcmDictGroupName.h"
 #include "gdcmDicomDirElement.h"
 
-namespace gdcm
+namespace GDCM_NAME_SPACE
 {
 
 typedef struct
@@ -44,12 +44,14 @@ static DICT_ENTRY datadir[] = {
 
 void FillDefaultDataDict(Dict *d)
 {
+   DictEntry *e;
    unsigned int i = 0;
    DICT_ENTRY n = datadir[i];
    while( n.name != 0 )
    {
-      const DictEntry e( n.group, n.element, n.vr, n.vm, n.name);
+      e = DictEntry::New( n.group, n.element, n.vr, n.vm, n.name);
       d->AddEntry( e );
+      e->Delete();
       n = datadir[++i];
    }
 }
@@ -74,6 +76,8 @@ typedef struct
    const char *type;
    unsigned short group;
    unsigned short element;
+   //VRKey vr;
+   const char *vr;
    const char *value;
 } ELEMENT;
 
@@ -85,13 +89,13 @@ void FillDefaultDIRDict(DicomDirElement *dde)
 {
    unsigned int i = 0;
    ELEMENT e = dataElement[i];
-   Element elem;
+   DicomElement elem;
    DicomDirType type;
    std::string strType;
 
    while( e.type != 0 )
    {
-      // Force to use the string comparision operator ==
+      // Force to use the string comparison operator ==
       strType = e.type;
       if( strType == "metaElem" )
          type = DD_META;
@@ -108,6 +112,7 @@ void FillDefaultDIRDict(DicomDirElement *dde)
 
       elem.Group = e.group;
       elem.Elem  = e.element;
+      elem.VR    = e.vr;
       elem.Value = e.value;
       dde->AddEntry( type, elem);
       e = dataElement[++i];