00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSString.h>
00008
00009 @interface NSPathStore2 : NSString
00010 {
00011 unsigned int _lengthAndRefCount;
00012 unsigned short _characters;
00013 }
00014
00015 + (id)pathStoreWithCharacters:(const unsigned short *)fp8 length:(unsigned int)fp12;
00016 + (id)pathWithComponents:(id)fp8;
00017 - (unsigned int)length;
00018 - (unsigned short)characterAtIndex:(unsigned int)fp8;
00019 - (void)getCharacters:(unsigned short *)fp8 range:(struct _NSRange)fp12;
00020 - (id)copyWithZone:(struct _NSZone *)fp8;
00021 - (unsigned int)hash;
00022 - (BOOL)isEqualToString:(id)fp8;
00023 - (id)pathComponents;
00024 - (BOOL)isAbsolutePath;
00025 - (id)lastPathComponent;
00026 - (id)stringByDeletingLastPathComponent;
00027 - (id)stringByAppendingPathComponent:(id)fp8;
00028 - (id)pathExtension;
00029 - (id)stringByDeletingPathExtension;
00030 - (id)stringByAppendingPathExtension:(id)fp8;
00031 - (id)stringByAbbreviatingWithTildeInPath;
00032 - (id)stringByExpandingTildeInPath;
00033 - (id)_stringByStandardizingPathUsingCache:(BOOL)fp8;
00034 - (id)stringByStandardizingPath;
00035 - (id)_stringByResolvingSymlinksInPathUsingCache:(BOOL)fp8;
00036 - (id)stringByResolvingSymlinksInPath;
00037
00038 @end
00039