]> Creatis software - gdcm.git/blob - src/gdcmDirList.h
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[gdcm.git] / src / gdcmDirList.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDirList.h,v $
5   Language:  C++
6   Date:      $Date: 2004/10/12 04:35:45 $
7   Version:   $Revision: 1.11 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMDIRLIST_H
20 #define GDCMDIRLIST_H
21
22 #include "gdcmCommon.h"
23
24 #include <string>
25 #include <list>
26 namespace gdcm 
27 {
28
29 //-----------------------------------------------------------------------------
30 /**
31  * \ingroup DirList
32  * \brief   List containing the file headers from root directory. 
33  */
34 class GDCM_EXPORT DirList: public std::list<std::string>
35 {
36 public :
37    DirList(std::string dirName,bool recursive=false);
38    virtual ~DirList();
39
40    std::string GetDirName();
41
42    /// Character '\' 
43    static const char SEPARATOR_X;
44    /// Character '/'  
45    static const char SEPARATOR_WIN;
46    /// depending on the O.S.
47    static const std::string SEPARATOR;
48
49 private :
50    int Explore(std::string dirName,bool recursive=false);
51    /// name of the root directory to explore
52    std::string name;
53 };
54 } // end namespace gdcm
55 //-----------------------------------------------------------------------------
56 #endif