1 /*=========================================================================
4 Module: $RCSfile: gdcmDirList.h,v $
6 Date: $Date: 2004/10/12 04:35:45 $
7 Version: $Revision: 1.11 $
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.
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.
17 =========================================================================*/
22 #include "gdcmCommon.h"
29 //-----------------------------------------------------------------------------
32 * \brief List containing the file headers from root directory.
34 class GDCM_EXPORT DirList: public std::list<std::string>
37 DirList(std::string dirName,bool recursive=false);
40 std::string GetDirName();
43 static const char SEPARATOR_X;
45 static const char SEPARATOR_WIN;
46 /// depending on the O.S.
47 static const std::string SEPARATOR;
50 int Explore(std::string dirName,bool recursive=false);
51 /// name of the root directory to explore
54 } // end namespace gdcm
55 //-----------------------------------------------------------------------------