]> Creatis software - gdcm.git/commitdiff
To please python :
authorjpr <jpr>
Wed, 15 Nov 2006 15:53:08 +0000 (15:53 +0000)
committerjpr <jpr>
Wed, 15 Nov 2006 15:53:08 +0000 (15:53 +0000)
-> remove default value for constructor.
-> add Get/Set accessors

src/gdcmDirList.cxx
src/gdcmDirList.h

index c2e6a8abe0414100214a51c56ca17bfdc25c9d89..badef7290b15e37f78e7905b6704f611e05a199c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.cxx,v $
   Language:  C++
-  Date:      $Date: 2006/05/12 09:36:09 $
-  Version:   $Revision: 1.59 $
+  Date:      $Date: 2006/11/15 15:53:08 $
+  Version:   $Revision: 1.60 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -83,6 +83,33 @@ bool DirList::IsDirectory(std::string const &dirName)
    }
 }
 
+/**
+ * \brief   Get the first entry while visiting Filenames
+ * \return  The first  if found, otherwhise ""
+ */ 
+std::string DirList::GetFirst()
+{
+   ItDirList = Filenames.begin();
+   if (ItDirList != Filenames.end())
+      return *ItDirList;
+   return "";
+} 
+
+/**
+ * \brief   Get the next entry while visiting Filenames
+ * \return  The next  if found, otherwhise ""
+ */ 
+std::string DirList::GetNext()
+{
+   gdcmAssertMacro (ItDirList != Filenames.end())
+   {
+      ++ItDirList;
+      if (ItDirList != Filenames.end())
+         return *ItDirList;      
+   }
+   return "";
+} 
+
 //-----------------------------------------------------------------------------
 // Protected
 
index e907f49ae11de6e894387e7510e68de5e9ce159c..2362a8e5e4d79ce6515ce7b56f21d063f55482e8 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.h,v $
   Language:  C++
-  Date:      $Date: 2006/02/16 20:06:14 $
-  Version:   $Revision: 1.31 $
+  Date:      $Date: 2006/11/15 15:53:08 $
+  Version:   $Revision: 1.32 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -25,7 +25,7 @@
 #include <vector>
 #include <iostream>
 
-namespace gdcm 
+namespace gdcm
 {
 
 typedef std::vector<std::string> DirListType;
@@ -42,7 +42,7 @@ typedef std::vector<std::string> DirListType;
 class GDCM_EXPORT DirList : public Base
 {
 public :
-   DirList(std::string const &dirName, bool recursive=false);
+   DirList(std::string const &dirName, bool recursive);
    ~DirList();
 
    void Print(std::ostream &os = std::cout, std::string const &indent = "" );
@@ -52,9 +52,15 @@ public :
 
    /// Return the file names
    DirListType const &GetFilenames() const { return Filenames; }
+   
+    /// Return the number of Files
+   int GetSize() const { return Filenames.size(); }  
 
    static bool IsDirectory(std::string const &dirName);
-
+   
+   std::string GetFirst();
+   std::string GetNext();
+   
 private :
    int Explore(std::string const &dirName, bool recursive=false);
 
@@ -62,6 +68,10 @@ private :
    DirListType Filenames;
    /// name of the root directory to explore
    std::string DirName;
+   
+   /// iterator on the SQItems of the current SeqEntry
+   DirListType::iterator ItDirList;  
+   
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------