2009-08-16 16:49:34 +00: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 12:59:30 +00:00
|
|
|
@end
|