From: malaterre Date: Sat, 16 Oct 2004 14:34:11 +0000 (+0000) Subject: ENH: Remove GDCM_EXPORT keyword from gdcm::DirList X-Git-Tag: Version0.6.bp~56 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=e37def13c113c838f969f2dc37b5b7ce4c0c2483;p=gdcm.git ENH: Remove GDCM_EXPORT keyword from gdcm::DirList --- diff --git a/ChangeLog b/ChangeLog index 979ade06..f3ead76c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-10-16 Mathieu Malaterre + * 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 * src/gdcmDebug.cxx last ditch attempt to get warning/error messages displayed on Win32 when a brutal abort() occurs (because of uncatched diff --git a/src/gdcmDirList.h b/src/gdcmDirList.h index 2174b8ba..4e112d07 100644 --- a/src/gdcmDirList.h +++ b/src/gdcmDirList.h @@ -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 +// 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 { public : DirList(std::string dirName,bool recursive=false);