]> Creatis software - gdcm.git/blobdiff - src/gdcmDictEntry.cxx
* src/gdcmCommon.h: FileType enum entry DICOMDIR removed (since
[gdcm.git] / src / gdcmDictEntry.cxx
index c4b30838c8de928b7392c079130243bbd6f30178..da623a2ef1dd79b6226bd3e1edb6e76e40e441ea 100644 (file)
@@ -1,9 +1,9 @@
 // gdcmDictEntry.cxx
 //-----------------------------------------------------------------------------
 #include "gdcmDictEntry.h"
+#include "gdcmDebug.h"
 
 #include <stdio.h>    // FIXME For sprintf
-#include "gdcmUtil.h"
 
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
@@ -13,7 +13,7 @@
  * @param   InGroup    DICOM-Group Number
  * @param   InElement  DICOM-Element Number
  * @param   InVr       Value Representatiion
- * @param   InFourth  // DO NOT use any longer
+ * @param   InFourth  // DO NOT use any longer
  *                       NOT part of the Dicom Standard
  * @param   InName    description of the element
 */
@@ -46,7 +46,7 @@ gdcmDictEntry::gdcmDictEntry(guint16 InGroup, guint16 InElement,
 TagKey gdcmDictEntry::TranslateToKey(guint16 group, guint16 element) {
        char trash[10];
        TagKey key;
-       // CLEAN ME: better call the iostream<< with the hex manipulator on.
+       // CLEANME: better call the iostream<< with the hex manipulator on.
        // This requires some reading of the stdlibC++ sources to make the
        // proper call (or copy).
        sprintf(trash, "%04x|%04x", group , element);