X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElValue.cxx;h=64e3e247ef46f21066cf2331edf5f9a70870bc6c;hb=b0745f542bc5ff8332c1f8445e7181279d12aefe;hp=3a353cf8b1d197f0367d8bbdc93fbe5bb45d2b29;hpb=baecaa4a3a8de7d236921b836a442ff7ac7e65ee;p=gdcm.git diff --git a/src/gdcmElValue.cxx b/src/gdcmElValue.cxx index 3a353cf8..64e3e247 100644 --- a/src/gdcmElValue.cxx +++ b/src/gdcmElValue.cxx @@ -1,6 +1,33 @@ -#include "gdcmlib.h" +// gdcmElValue.cxx +//----------------------------------------------------------------------------- +// TODO +// A 'gdcmElValue' is actually a 'Dicom Element'. +// WHY such a confusing name??? +// +#include "gdcmElValue.h" -void ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); } -string ElValue::GetVR(void) { return entry->GetVR(); } +//----------------------------------------------------------------------------- +// Constructor / Destructor +/** + * \ingroup gdcmElValue + * \brief Constructor from a given gdcmDictEntry + * @param in Pointer to existing dictionary entry + */ +gdcmElValue::gdcmElValue(gdcmDictEntry* in) { + ImplicitVr = false; + entry = in; +} -ElValue::ElValue(gdcmDictEntry* in) { entry = in; } +//----------------------------------------------------------------------------- +// Print + +//----------------------------------------------------------------------------- +// Public + +//----------------------------------------------------------------------------- +// Protected + +//----------------------------------------------------------------------------- +// Private + +//-----------------------------------------------------------------------------