]> Creatis software - gdcm.git/blobdiff - src/gdcmDirList.h
Add new method :
[gdcm.git] / src / gdcmDirList.h
index 2362a8e5e4d79ce6515ce7b56f21d063f55482e8..cda6dd317c78e1377a6549b5ed38fb756bf64ec8 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.h,v $
   Language:  C++
-  Date:      $Date: 2006/11/15 15:53:08 $
-  Version:   $Revision: 1.32 $
+  Date:      $Date: 2007/06/08 12:49:37 $
+  Version:   $Revision: 1.34 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #define GDCMDIRLIST_H
 
 #include "gdcmBase.h"
+#include "gdcmDicomDirSerie.h"
 
 #include <string>
 #include <vector>
 #include <iostream>
 
-namespace gdcm
+namespace GDCM_NAME_SPACE
 {
 
 typedef std::vector<std::string> DirListType;
@@ -43,6 +44,7 @@ class GDCM_EXPORT DirList : public Base
 {
 public :
    DirList(std::string const &dirName, bool recursive);
+   DirList(DicomDirSerie *s);   
    ~DirList();
 
    void Print(std::ostream &os = std::cout, std::string const &indent = "" );
@@ -63,7 +65,8 @@ public :
    
 private :
    int Explore(std::string const &dirName, bool recursive=false);
-
+   int Explore(DicomDirSerie *s);
+   
    /// List of file names
    DirListType Filenames;
    /// name of the root directory to explore