]> Creatis software - gdcm.git/blobdiff - src/gdcmDirList.h
change
[gdcm.git] / src / gdcmDirList.h
index 9891970ce6f67493b349de886d43abd58678db57..7299f89abca458d66d80bd719ae2e59de6adfe3e 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.h,v $
   Language:  C++
-  Date:      $Date: 2007/05/23 14:18:09 $
-  Version:   $Revision: 1.33 $
+  Date:      $Date: 2009/02/05 09:03:26 $
+  Version:   $Revision: 1.37 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
                                                                                 
 =========================================================================*/
 
-#ifndef GDCMDIRLIST_H
-#define GDCMDIRLIST_H
+#ifndef _GDCMDIRLIST_H_
+#define _GDCMDIRLIST_H_
 
 #include "gdcmBase.h"
+#include "gdcmDicomDirSerie.h"
 
 #include <string>
 #include <vector>
@@ -34,6 +35,8 @@ typedef std::vector<std::string> DirListType;
 
 // 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
+//
+// We have to supply accessors GetSize(), GetFirst(), GetNext() 
 
 /**
  * \brief   List containing the file headers of all the 'gdcm readable' files
@@ -42,7 +45,8 @@ typedef std::vector<std::string> DirListType;
 class GDCM_EXPORT DirList : public Base
 {
 public :
-   DirList(std::string const &dirName, bool recursive);
+   DirList(std::string const &dirName, bool recursive, bool all=false);
+   DirList(DicomDirSerie *s);   
    ~DirList();
 
    void Print(std::ostream &os = std::cout, std::string const &indent = "" );
@@ -62,8 +66,9 @@ public :
    std::string GetNext();
    
 private :
-   int Explore(std::string const &dirName, bool recursive=false);
-
+   int Explore(std::string const &dirName, bool recursive=false, bool all=false);
+   int Explore(DicomDirSerie *s);
+   
    /// List of file names
    DirListType Filenames;
    /// name of the root directory to explore