X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDirList.h;h=7eabc36e2ecc22bf060b24343fc6d28e6518cdeb;hb=7796d0740430edfba773ad0d20bc159c6cafcbd3;hp=5fa55a2bdbe066bf4a84633bf7c8abfe447c6c21;hpb=9b3db5f141ec2b11eadefaa2ea2a3a20058b37f9;p=gdcm.git diff --git a/src/gdcmDirList.h b/src/gdcmDirList.h index 5fa55a2b..7eabc36e 100644 --- a/src/gdcmDirList.h +++ b/src/gdcmDirList.h @@ -1,31 +1,68 @@ -// gdcmDirList.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDirList.h,v $ + Language: C++ + Date: $Date: 2005/09/02 07:10:03 $ + Version: $Revision: 1.25 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #ifndef GDCMDIRLIST_H #define GDCMDIRLIST_H #include "gdcmCommon.h" #include -#include +#include +#include + +namespace gdcm +{ + +typedef std::vector DirListType; //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDirList: public std::list + +// NOTE: Due to a VC6 'feature' we cannot export a std::list in a dll, +// so GDCM_EXPORT keyword was removed for this class only + +/** + * \brief List containing the file headers of all the gdcm readable files + * found by exploring recursively a root directory. + */ +class GDCM_EXPORT DirList { public : - gdcmDirList(std::string dirName,bool recursive=false); - virtual ~gdcmDirList(void); + DirList(std::string const &dirName, bool recursive=false); + ~DirList(); + + void Print(std::ostream &os = std::cout); - std::string GetDirName(void); + /// Return the name of the directory + std::string const &GetDirName() const { return DirName; } - static const char SEPARATOR_X; - static const char SEPARATOR_WIN; - static const std::string SEPARATOR; + /// Return the file names + DirListType const &GetFilenames() const { return Filenames; } + + static bool IsDirectory(std::string const &dirName); private : - void Explore(std::string dirName,bool recursive=false); + int Explore(std::string const &dirName, bool recursive=false); - std::string name; + /// List of file names + DirListType Filenames; + /// name of the root directory to explore + std::string DirName; }; - +} // end namespace gdcm //----------------------------------------------------------------------------- #endif