2009-08-16 12:49:34 -04:00
|
|
|
/*
|
|
|
|
* NSString+FinderCompare.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#include <CoreServices/CoreServices.h>
|
|
|
|
|
|
|
|
@interface NSString (FinderCompare)
|
|
|
|
|
|
|
|
- (NSComparisonResult)finderCompare:(NSString *)aString;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSURL (FinderCompare)
|
|
|
|
|
|
|
|
- (NSComparisonResult)finderCompare:(NSURL *)aURL;
|
|
|
|
|
2020-02-01 09:59:30 -03:00
|
|
|
@end
|