Update of /cvsroot/pclasses/pclasses2/include/pclasses/System
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16085/include/pclasses/System
Modified Files:
PathFinder.h
Log Message:
- Removed basename(), dirSeparator() and isAccessible() from PathFinder,
it now uses the Path class.
- Use absolute pathes when finding Files ... without we may cache relative
paths that point to the same absolute path.
Index: PathFinder.h
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/System/PathFinder.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- PathFinder.h 28 Apr 2005 10:21:43 -0000 1.7
+++ PathFinder.h 7 May 2005 13:23:39 -0000 1.8
@@ -119,23 +119,6 @@
const string_list & extensions() const;
/**
- Returns true if path is readable.
- */
- static bool isAccessible(const Unicode::String& path);
-
- /**
- Returns the "base name" of the given string: any part
- following the final directory separator character.
- */
- static Unicode::String basename(const Unicode::String &);
-
- /**
- Returns a platform-dependent directory separator. This
- is set when the class is compiled.
- */
- static Unicode::String dirSeparator();
-
- /**
Returns a platform-dependent path-list separator string.
This is set when the class is compiled.
*/
|