X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDirList.h;h=0ffb6c1ebcc63c88abcdf696b9eab5821870cffc;hb=cecf8a0bb86a9b3223a9d02d1106a564aa6ef7f9;hp=6dd6624aaff5b7b27d60ae66cc5838b7b1141d2d;hpb=1a11accd11061d63d3c09db7b1445637207e81e4;p=gdcm.git diff --git a/src/gdcmDirList.h b/src/gdcmDirList.h index 6dd6624a..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,16 +21,16 @@ public : std::string GetDirName(void); -/// \ + /// Character '\' static const char SEPARATOR_X; -/// / -static const char SEPARATOR_WIN; -/// depending on the O.S. + /// 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 + /// name of the root directory to explore std::string name; };