Program: gdcm
Module: $RCSfile: gdcmDictEntry.cxx,v $
Language: C++
- Date: $Date: 2005/01/07 16:07:01 $
- Version: $Revision: 1.32 $
+ Date: $Date: 2005/01/07 16:14:58 $
+ Version: $Revision: 1.33 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
{
if ( IsVMUnknown() )
{
- VR = vr;
+ VM = vm;
}
else
{
Program: gdcm
Module: $RCSfile: gdcmDictEntry.h,v $
Language: C++
- Date: $Date: 2005/01/07 12:42:54 $
- Version: $Revision: 1.26 $
+ Date: $Date: 2005/01/07 16:14:58 $
+ Version: $Revision: 1.27 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/// @return
bool IsVRUnknown() { return VR == GDCM_UNKNOWN; }
+ /// \brief tells if the V(alue) M(ultiplicity) is known (?!)
+ /// @return
+ bool IsVMUnknown() { return VM == GDCM_UNKNOWN; }
+
/// \brief Returns the Dicom Group Number of the current DictEntry
/// @return the Dicom Group Number
uint16_t GetGroup() { return Group; }
Program: gdcm
Module: $RCSfile: gdcmDocEntry.h,v $
Language: C++
- Date: $Date: 2005/01/07 12:42:54 $
- Version: $Revision: 1.35 $
+ Date: $Date: 2005/01/07 16:14:58 $
+ Version: $Revision: 1.36 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/// @return true if the VR is unknown
bool IsVRUnknown() { return DicomDict->IsVRUnknown(); };
+ /// \brief Tells us if the VM of the current Dicom Element is Unknown
+ /// @return true if the VM is unknown
+ bool IsVMUnknown() { return DicomDict->IsVMUnknown(); };
+
/// \brief Sets the DicEntry of the current Dicom Element
/// @param newEntry pointer to the DictEntry
void SetDictEntry(DictEntry *newEntry) { DicomDict = newEntry; };