]> Creatis software - gdcm.git/blobdiff - src/gdcmElValue.cxx
* python/distutilsSwigCPlusPlus.py now properly collects the
[gdcm.git] / src / gdcmElValue.cxx
index 5194a799fb9c13d0576fe9c906d32dc0bdd71db7..339069021ba1525f4766c6eb402c6279eaeeb44e 100644 (file)
@@ -1,6 +1,12 @@
+// gdcmElValue.cxx
+
 #include "gdcm.h"
 
-void   ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); }
-string ElValue::GetVR(void)   { return entry->GetVR(); }
+       // void    ElValue::SetVR(string v)      { entry->SetVR(v);       };
+
+ElValue::ElValue(gdcmDictEntry* in) {
+       ImplicitVr = false;
+       entry = in;
+}
+
 
-ElValue::ElValue(gdcmDictEntry* in) { entry = in; }