]> Creatis software - gdcm.git/blob - src/gdcmElValue.cxx
Ajout fonctions
[gdcm.git] / src / gdcmElValue.cxx
1 // gdcmElValue.cxx
2
3 #include "gdcm.h"
4
5 void   ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); }
6 string ElValue::GetVR(void)          { return entry->GetVR(); }
7
8 ElValue::ElValue(gdcmDictEntry* in) {
9         ImplicitVr = false;
10         entry = in;
11 }