]> Creatis software - gdcm.git/commitdiff
STYLE: Naming convention require a capital letter for member variable + the accessor...
authormalaterre <malaterre>
Wed, 12 Jan 2005 22:09:55 +0000 (22:09 +0000)
committermalaterre <malaterre>
Wed, 12 Jan 2005 22:09:55 +0000 (22:09 +0000)
src/gdcmDirList.cxx
src/gdcmDirList.h

index b7098a06bd3b7100258ab9b194859d8e71e1a5db..615d0b4deced7612782941982df26cb9c0c80d02 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/12 21:24:17 $
-  Version:   $Revision: 1.31 $
+  Date:      $Date: 2005/01/12 22:09:55 $
+  Version:   $Revision: 1.32 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -41,9 +41,9 @@ namespace gdcm
  */
 DirList::DirList(std::string const &dirName, bool recursive)
 {
-   name = dirName;
-   Util::NormalizePath(name);
-   Explore(name, recursive);
+   DirName = dirName;
+   Util::NormalizePath(DirName);
+   Explore(DirName, recursive);
 }
 
 /**
@@ -66,7 +66,7 @@ DirList::~DirList()
  */
 std::string const &DirList::GetDirName() const
 {
-   return name;
+   return DirName;
 }
 
 //-----------------------------------------------------------------------------
index 207522d0f4de38f20a9807f1b8a08f0667ca2ef6..526f94acb9bb5833b68231cf68b262dc59d4f0d0 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDirList.h,v $
   Language:  C++
-  Date:      $Date: 2005/01/11 15:15:38 $
-  Version:   $Revision: 1.15 $
+  Date:      $Date: 2005/01/12 22:09:55 $
+  Version:   $Revision: 1.16 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -55,7 +55,7 @@ private :
    int Explore(std::string const &dirName, bool recursive=false);
 
    /// name of the root directory to explore
-   std::string name;
+   std::string DirName;
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------