]> Creatis software - gdcm.git/commitdiff
Coding style
authorjpr <jpr>
Tue, 5 Jul 2005 18:47:38 +0000 (18:47 +0000)
committerjpr <jpr>
Tue, 5 Jul 2005 18:47:38 +0000 (18:47 +0000)
Testing/TestPrintAllDocument.cxx
Testing/TestValidate.cxx

index fb2b178f1f82be1ab04c8b66792bf1e6b380463a..1ef573842d12efe475b28ee2392ad6bacf7d5363 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestPrintAllDocument.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/06/08 04:01:41 $
-  Version:   $Revision: 1.3 $
+  Date:      $Date: 2005/07/05 18:47:38 $
+  Version:   $Revision: 1.4 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -45,6 +45,7 @@ int TestPrintAllDocument(int, char *[])
    //std::ostringstream s;
    int i = 0;
    int swapC;
+   unsigned int j;
    std::string pixelType, photomInterp;
    int l;
    l = strlen("PALETTE COLOR ");
@@ -64,13 +65,12 @@ int TestPrintAllDocument(int, char *[])
       //std::cout << s.str() << gdcmDataImages[i];
 
       std::cout << gdcmDataImages[i];
-      unsigned int j;
-      for ( j=0; j<60-strlen(gdcmDataImages[i]); j++)
+      for (j=0; j<60-strlen(gdcmDataImages[i]); j++)
          std::cout << " ";    
 
       pixelType = e1->GetPixelType();
       std::cout << " pixelType="            << pixelType;
-      if (pixelType == "8U" || pixelType == "8S" )
+      if ( pixelType == "8U" || pixelType == "8S" )
          std::cout << " ";
       std::cout << " Smpl.P.Pix.="          << e1->GetSamplesPerPixel()
                 << " Plan.Config.="         << e1->GetPlanarConfiguration();
@@ -82,7 +82,7 @@ int TestPrintAllDocument(int, char *[])
  
       std::cout << " TransferSyntaxName= [" << e1->GetTransferSyntaxName() << "]" ;
       swapC = e1->GetSwapCode();
-      if (swapC != 1234)
+      if ( swapC != 1234 )
           std::cout << " SwapCode = "       << e1->GetSwapCode(); 
       if ( e1->CheckIfEntryExist(0x0088,0x0200) )
           std::cout << " Icon Image Sequence";
index 6162fcf6342a9b320099670bcf558ce817d5594b..62c9ffee73a4a471a40c4791cafcd159726870c1 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestValidate.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/06/14 20:33:53 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2005/07/05 18:47:38 $
+  Version:   $Revision: 1.2 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 int TestValidate(int argc, char *argv[])
 {
   if( argc < 2 )
-    {
-    std::cerr << "ouh les cornes" << std::endl;
+  {
+    std::cerr << "ouh les cornes / shame on you" << std::endl;
     return 1;
-    }
+  }
 
   const char *filename = argv[1];