X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmElValue.cxx;h=61b216ba75a53a8eec25c24828c685209f631028;hb=8508a211128a98cc091dacb51718a72a374196ed;hp=6ed2b007e743d6c426597fa020b2dfc09f4738f4;hpb=70e24c6c61481f9836e26b6b44a9670d92a4f43b;p=gdcm.git diff --git a/src/gdcmElValue.cxx b/src/gdcmElValue.cxx index 6ed2b007..61b216ba 100644 --- a/src/gdcmElValue.cxx +++ b/src/gdcmElValue.cxx @@ -1,7 +1,15 @@ -#include "gdcmlib.h" +// gdcmElValue.cxx -void ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); } +#include "gdcmElValue.h" -void ElValue::SetLgrLue(guint32 lgr) { LgrLueElem = lgr; } -ElValue::ElValue(gdcmDictEntry* in) { entry = in; } +/** + * \ingroup gdcmElValue + * \brief Constructor from a given gdcmDictEntry + * @param in Pointer to existing dictionary entry + */ + +gdcmElValue::gdcmElValue(gdcmDictEntry* in) { + ImplicitVr = false; + entry = in; +}