]> Creatis software - gdcm.git/blobdiff - src/gdcmDirList.h
* Add Command and CommandManager to have possible callback
[gdcm.git] / src / gdcmDirList.h
index aa64c452bcf4fd798e7452e5e8ecc7615ca5840f..4fa92355a61a85492a0699564ac8eea4c92c291f 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.h,v $
   Language:  C++
-  Date:      $Date: 2005/10/23 15:32:31 $
-  Version:   $Revision: 1.26 $
+  Date:      $Date: 2005/11/28 15:20:33 $
+  Version:   $Revision: 1.28 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -20,6 +20,7 @@
 #define GDCMDIRLIST_H
 
 #include "gdcmCommon.h"
+#include "gdcmCommandManager.h"
 
 #include <string>
 #include <vector>
@@ -32,14 +33,14 @@ typedef std::vector<std::string> DirListType;
 
 //-----------------------------------------------------------------------------
 
-// NOTE: Due to a VC6 'feature' we cannot export a std::list in a dll, 
+// NOTE: Due to a M$VC6 'feature' we cannot export a std::list in a dll, 
 // so GDCM_EXPORT keyword was removed for this class only
 
 /**
  * \brief   List containing the file headers of all the 'gdcm readable' files
  *          found by exploring (possibely recursively) a root directory. 
  */
-class GDCM_EXPORT DirList
+class GDCM_EXPORT DirList : public CommandManager
 {
 public :
    DirList(std::string const &dirName, bool recursive=false);