From: stephan b. <sg...@us...> - 2004-12-24 04:30:22
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1241/include/pclasses/System Modified Files: PathFinder.h Log Message: Moved joinList() from public to private. Index: PathFinder.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/System/PathFinder.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- PathFinder.h 24 Dec 2004 01:43:15 -0000 1.3 +++ PathFinder.h 24 Dec 2004 04:30:12 -0000 1.4 @@ -121,11 +121,6 @@ const string_list & extensions() const; /** - Helper function to collapse a list into a string. - */ - std::string joinList( const string_list & list, const std::string & separator ) const; - - /** Returns true if path is readable. */ static bool isAccessible( const std::string & path ); @@ -169,6 +164,10 @@ private: + /** + Helper function to collapse a list into a string. + */ + std::string joinList( const string_list & list, const std::string & separator ) const; string_list paths; string_list exts; std::string pathseparator; |