]> Creatis software - gdcm.git/blobdiff - src/gdcmDirList.h
BUG: JP suggest me to do this change
[gdcm.git] / src / gdcmDirList.h
index 6dd6624aaff5b7b27d60ae66cc5838b7b1141d2d..0ffb6c1ebcc63c88abcdf696b9eab5821870cffc 100644 (file)
@@ -9,6 +9,10 @@
 #include <list>
 
 //-----------------------------------------------------------------------------
+/**
+ * \ingroup gdcmDirList
+ * \brief   List containing the file headers from root directory. 
+ */
 class GDCM_EXPORT gdcmDirList: public std::list<std::string>
 {
 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;
 };