From cf28c5a972c34fbdb2f89c08faecd23d029f7fd3 Mon Sep 17 00:00:00 2001 From: regrain Date: Tue, 9 Nov 2004 13:10:44 +0000 Subject: [PATCH] * src/gdcmDicomDir.h : bug fix for the last Boix's commit (problem when compiling with MSVC6) -- BeNours --- ChangeLog | 4 ++++ src/gdcmDicomDir.h | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index db27f533..95707955 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-11-09 Benoit Regrain + * src/gdcmDicomDir.h : bug fix for the last Boix's commit (problem when + compiling with MSVC6) + 2004-11-09 Benoit Regrain * Bugs fix for the Windows build with VC6 * CMakeLists.txt : bug fix - The include of the VTK lib is made only when it's diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index 3ba3aa54..77b94aaa 100644 --- a/src/gdcmDicomDir.h +++ b/src/gdcmDicomDir.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.h,v $ Language: C++ - Date: $Date: 2004/11/09 10:25:27 $ - Version: $Revision: 1.37 $ + Date: $Date: 2004/11/09 13:10:44 $ + Version: $Revision: 1.38 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -44,7 +44,8 @@ typedef std::vector VectDocument; class GDCM_EXPORT DicomDir: public Document { public: - typedef GDCM_EXPORT void(Method)(void*); + typedef void(Method)(void*); + DicomDir( std::string const & filename, bool parseDir = false ); DicomDir(); -- 2.48.1