]> Creatis software - gdcm.git/commitdiff
* src/gdcmDicomDir.h : bug fix for the last Boix's commit (problem when
authorregrain <regrain>
Tue, 9 Nov 2004 13:10:44 +0000 (13:10 +0000)
committerregrain <regrain>
Tue, 9 Nov 2004 13:10:44 +0000 (13:10 +0000)
    compiling with MSVC6)
   -- BeNours

ChangeLog
src/gdcmDicomDir.h

index db27f533d54fab7aa98cc14ad0e1cbcf65c3504d..957079550d5af8c4c8289667af243720ac0ed9db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-09 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
+  * src/gdcmDicomDir.h : bug fix for the last Boix's commit (problem when 
+    compiling with MSVC6)
+
 2004-11-09 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
   * Bugs fix for the Windows build with VC6
   * CMakeLists.txt : bug fix - The include of the VTK lib is made only when it's
index 3ba3aa54e55b749a761fe1d4b1a4710236a322b6..77b94aaaf17f4bdeafd155b36ad9a72d254802e6 100644 (file)
@@ -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<Document*>  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();