]> Creatis software - gdcm.git/blobdiff - src/gdcmParse.cxx
* To remove warnings
[gdcm.git] / src / gdcmParse.cxx
index d618c3156c63752c30667ecfeef5588d8ae72e50..b79efb72e69f6aa49950e31612b447f1d3d16b09 100644 (file)
@@ -1,5 +1,5 @@
 // gdcmParse.cxx
-
+//-----------------------------------------------------------------------------
 //This is needed when compiling in debug mode
 #ifdef _MSC_VER
 // 'type' : forcing value to bool 'true' or 'false' (performance warning)
@@ -17,7 +17,7 @@
 
 #define str2num(str, typeNum) *((typeNum *)(str))
 
-/////////////////////////////////////////////////////////////////
+//-----------------------------------------------------------------------------
 /**
  * \ingroup gdcmFile
  * \brief   Parse pixel data from disk and *prints* the result
  *
  */
 bool gdcmFile::ParsePixelData(void) {
-
 // DO NOT remove the printf s.
-// The ONLY purpose of this methos is to PRINT the content
-
+// The ONLY purpose of this method is to PRINT the content
    FILE *fp;
 
    if ( !(fp=Header->OpenFile()))
@@ -246,3 +244,5 @@ bool gdcmFile::ParsePixelData(void) {
    }
    return true;            
 }
+
+//-----------------------------------------------------------------------------