]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.cxx
* src/gdcmDicomDir*.[h|cxx] : rename methods to be logik in their name.
[gdcm.git] / src / gdcmVR.cxx
index 8a716da72856592bee508010148f884297ae8e92..57e1ce08d913f7eab8ce5f53a72da6f129ef5079 100644 (file)
@@ -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();
 }
 
 //-----------------------------------------------------------------------------