X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElValue.cxx;h=61b216ba75a53a8eec25c24828c685209f631028;hb=a00fb733640f90e2631c753dca533d645ea8a833;hp=060ffb99eb767cb911d69a9fe936f0fbb43abc8d;hpb=e06d61ba347d7f5f692a682434e089d939f85653;p=gdcm.git diff --git a/src/gdcmElValue.cxx b/src/gdcmElValue.cxx index 060ffb99..61b216ba 100644 --- a/src/gdcmElValue.cxx +++ b/src/gdcmElValue.cxx @@ -1,11 +1,15 @@ // gdcmElValue.cxx -#include "gdcm.h" +#include "gdcmElValue.h" -void ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); } -string ElValue::GetVR(void) { return entry->GetVR(); } -ElValue::ElValue(gdcmDictEntry* in) { +/** + * \ingroup gdcmElValue + * \brief Constructor from a given gdcmDictEntry + * @param in Pointer to existing dictionary entry + */ + +gdcmElValue::gdcmElValue(gdcmDictEntry* in) { ImplicitVr = false; entry = in; }