X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDirList.h;h=0ffb6c1ebcc63c88abcdf696b9eab5821870cffc;hb=7d8572bf6b911f746d4dc5389bb3270868957373;hp=5fa55a2bdbe066bf4a84633bf7c8abfe447c6c21;hpb=9b3db5f141ec2b11eadefaa2ea2a3a20058b37f9;p=gdcm.git diff --git a/src/gdcmDirList.h b/src/gdcmDirList.h index 5fa55a2b..0ffb6c1e 100644 --- a/src/gdcmDirList.h +++ b/src/gdcmDirList.h @@ -9,6 +9,10 @@ #include //----------------------------------------------------------------------------- +/** + * \ingroup gdcmDirList + * \brief List containing the file headers from root directory. + */ class GDCM_EXPORT gdcmDirList: public std::list { public : @@ -17,13 +21,16 @@ public : std::string GetDirName(void); + /// Character '\' static const char SEPARATOR_X; + /// Character '/' static const char SEPARATOR_WIN; + /// depending on the O.S. static const std::string SEPARATOR; private : void Explore(std::string dirName,bool recursive=false); - + /// name of the root directory to explore std::string name; };