]> Creatis software - gdcm.git/blob - src/gdcmDirList.h
ENH: add a test for DirList. Add a method Print on DirList. Remove useless NormalizeP...
[gdcm.git] / src / gdcmDirList.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDirList.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/14 21:52:06 $
7   Version:   $Revision: 1.17 $
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 <vector>
26 #include <iostream>
27
28 namespace gdcm 
29 {
30
31 //-----------------------------------------------------------------------------
32 /**
33  * \ingroup DirList
34  * \brief   List containing the file Header s of all the gdcm readable files
35  *          found by exploring recursively a root directory. 
36  */
37 // NOTE: Due to a VC6 'feature' we can not export a std::list in a dll, 
38 // so GDCM_EXPORT keyword was removed for this class only
39
40 class DirList : public std::vector<std::string>
41 {
42 public :
43    DirList(std::string const &dirName, bool recursive=false);
44    virtual ~DirList();
45
46    std::string const &GetDirName() const;
47
48    void Print(std::ostream &os = std::cout);
49
50    /// Character '\' 
51    static const char SEPARATOR_X;
52    /// Character '/'  
53    static const char SEPARATOR_WIN;
54    /// depending on the O.S.
55    static const std::string SEPARATOR;
56
57 private :
58    int Explore(std::string const &dirName, bool recursive=false);
59
60    /// name of the root directory to explore
61    std::string DirName;
62 };
63 } // end namespace gdcm
64 //-----------------------------------------------------------------------------
65 #endif