From 27c37e95b55fb51d7f8de13bebac4f299d487c17 Mon Sep 17 00:00:00 2001 From: jpr Date: Tue, 5 Jul 2005 18:47:38 +0000 Subject: [PATCH] Coding style --- Testing/TestPrintAllDocument.cxx | 12 ++++++------ Testing/TestValidate.cxx | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Testing/TestPrintAllDocument.cxx b/Testing/TestPrintAllDocument.cxx index fb2b178f..1ef57384 100644 --- a/Testing/TestPrintAllDocument.cxx +++ b/Testing/TestPrintAllDocument.cxx @@ -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"; diff --git a/Testing/TestValidate.cxx b/Testing/TestValidate.cxx index 6162fcf6..62c9ffee 100644 --- a/Testing/TestValidate.cxx +++ b/Testing/TestValidate.cxx @@ -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 @@ -22,10 +22,10 @@ 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]; -- 2.48.1