X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.cxx;h=57e1ce08d913f7eab8ce5f53a72da6f129ef5079;hb=060ddb1e7fabdfc43c258dfd575df80e4023fd32;hp=8a716da72856592bee508010148f884297ae8e92;hpb=327dfe7647e3720b0f3125f9b19397cb9afc0ed3;p=gdcm.git diff --git a/src/gdcmVR.cxx b/src/gdcmVR.cxx index 8a716da7..57e1ce08 100644 --- a/src/gdcmVR.cxx +++ b/src/gdcmVR.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmVR.cxx,v $ Language: C++ - Date: $Date: 2005/01/06 20:03:28 $ - Version: $Revision: 1.27 $ + Date: $Date: 2005/01/17 11:13:21 $ + Version: $Revision: 1.32 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -37,7 +37,7 @@ VR::VR() std::ifstream from(filename.c_str()); if(!from) { - dbg.Verbose(2, "VR::VR: can't open dictionary", filename.c_str()); + gdcmVerboseMacro("Can't open dictionary" << filename.c_str()); FillDefaultVRDict(vr); } else @@ -106,15 +106,12 @@ int VR::Count(VRKey const &key) //----------------------------------------------------------------------------- /** - * \brief Simple predicate that checks wether the given argument + * \brief Simple predicate that checks whether the given argument * corresponds to the Value Representation of a \ref BinEntry . * @param tested value representation to check for. */ bool VR::IsVROfBinaryRepresentable(VRKey const &tested) { - //std::cout << "VR::IsVROfGdcmBinaryRepresentable====================" - // << tested << std::endl; - if ( tested == GDCM_UNKNOWN) return true; @@ -128,10 +125,10 @@ bool VR::IsVROfBinaryRepresentable(VRKey const &tested) } /** - * \brief Simple predicate that checks wether the given argument + * \brief Simple predicate that checks whether the given argument * corresponds to the Value Representation of a \ref ValEntry * but NOT a \ref BinEntry. - * @param tested value representation to check for. + * @param tested value representation to be checked. */ bool VR::IsVROfStringRepresentable(VRKey const &tested) { @@ -156,7 +153,7 @@ bool VR::IsVROfStringRepresentable(VRKey const &tested) } /** - * \brief Simple predicate that checks wether the given argument + * \brief Simple predicate that checks whether the given argument * corresponds to the Value Representation of a \ref SeqEntry * @param tested value representation to check for. */ @@ -167,7 +164,7 @@ bool VR::IsVROfSequence(VRKey const &tested) bool VR::IsValidVR(VRKey const &key) { - return(vr.find(key)!=vr.end()); + return vr.find(key) != vr.end(); } //-----------------------------------------------------------------------------