]> Creatis software - gdcm.git/commitdiff
ENH: Remove GDCM_EXPORT keyword from gdcm::DirList
authormalaterre <malaterre>
Sat, 16 Oct 2004 14:34:11 +0000 (14:34 +0000)
committermalaterre <malaterre>
Sat, 16 Oct 2004 14:34:11 +0000 (14:34 +0000)
ChangeLog
src/gdcmDirList.h

index 979ade069103124c5157d2cddb91ee5e5f54670a..f3ead76cbb313b8830df58dc2e815ad0cda28f49 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-10-16 Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
+  * Remove GDCM_EXPORT keyword from gdcm::DirList due to :
+    http://support.microsoft.com/support/kb/articles/Q168/9/58.ASP
+
 2004-10-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
   * src/gdcmDebug.cxx last ditch attempt to get warning/error messages
     displayed on Win32 when a brutal abort() occurs (because of uncatched
index 2174b8ba1233c4682627052a956ee5f39f4acd6b..4e112d07b5931a8ca16f03d967f4df7e7dc568d7 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/12 04:35:45 $
-  Version:   $Revision: 1.11 $
+  Date:      $Date: 2004/10/16 14:34:12 $
+  Version:   $Revision: 1.12 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -31,7 +31,9 @@ namespace gdcm
  * \ingroup DirList
  * \brief   List containing the file headers from root directory. 
  */
-class GDCM_EXPORT DirList: public std::list<std::string>
+// NOTE: Due to a VC6 'feature' we can not export a std::list in a dll, 
+// so GDCM_EXPORT keyword was removed for this class only
+class DirList: public std::list<std::string>
 {
 public :
    DirList(std::string dirName,bool recursive=false);