From: jpr Date: Wed, 13 Feb 2008 18:53:33 +0000 (+0000) Subject: remove spurious trailing spaces X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=944dcbe9398f982d89c3ab2a588b9f1f1c072b7c;p=gdcm.git remove spurious trailing spaces --- diff --git a/src/gdcmDicomDir.cxx b/src/gdcmDicomDir.cxx index 22720bd8..9d44e72f 100644 --- a/src/gdcmDicomDir.cxx +++ b/src/gdcmDicomDir.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.cxx,v $ Language: C++ - Date: $Date: 2007/09/17 12:21:56 $ - Version: $Revision: 1.196 $ + Date: $Date: 2008/02/13 18:53:33 $ + Version: $Revision: 1.197 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -480,7 +480,7 @@ bool DicomDir::Write(std::string const &fileName) std::ofstream *fp = new std::ofstream(fileName.c_str(), std::ios::out | std::ios::binary); - if ( !fp ) + if ( !fp ) { gdcmWarningMacro("Failed to open(write) File: " << fileName.c_str()); return false; diff --git a/src/gdcmDirList.cxx b/src/gdcmDirList.cxx index 005700a7..f9b7ecb1 100644 --- a/src/gdcmDirList.cxx +++ b/src/gdcmDirList.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDirList.cxx,v $ Language: C++ - Date: $Date: 2007/09/20 07:43:35 $ - Version: $Revision: 1.64 $ + Date: $Date: 2008/02/13 18:53:33 $ + Version: $Revision: 1.65 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -28,7 +28,7 @@ #include //stat function #ifdef _MSC_VER - #include + #include #include #else #include diff --git a/src/gdcmDocument.h b/src/gdcmDocument.h index 75779764..50fcead9 100644 --- a/src/gdcmDocument.h +++ b/src/gdcmDocument.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocument.h,v $ Language: C++ - Date: $ $ - Version: $ $ + Date: $Date: 2008/02/13 18:53:33 $ + Version: $Revision: 1.153 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or diff --git a/src/gdcmSerieHelper.cxx b/src/gdcmSerieHelper.cxx index eb6dd6a0..b0a1629b 100644 --- a/src/gdcmSerieHelper.cxx +++ b/src/gdcmSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2007/10/30 14:51:00 $ - Version: $Revision: 1.64 $ + Date: $Date: 2008/02/13 18:53:33 $ + Version: $Revision: 1.65 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -263,6 +263,9 @@ void SerieHelper::SetDirectory(std::string const &dir, bool recursive) for( DirListType::const_iterator it = filenames_list.begin(); it != filenames_list.end(); ++it) { + // std::cout << "--------------------------------filename [" << *it << "]" + // << std::endl; + gdcmDebugMacro("filename [" << *it << "]" ); AddFileName( *it ); } } diff --git a/src/gdcmSystem.h b/src/gdcmSystem.h index ce032185..67a9769c 100644 --- a/src/gdcmSystem.h +++ b/src/gdcmSystem.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSystem.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:05 $ - Version: $Revision: 1.5 $ + Date: $Date: 2008/02/13 18:53:34 $ + Version: $Revision: 1.6 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -61,6 +61,7 @@ typedef signed char int8_t; typedef signed short int16_t; typedef signed int int32_t; +/// \fixme : what about 64 bits ? typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t;