19 lines
293 B
Objective-C
19 lines
293 B
Objective-C
/*
|
|
* 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;
|
|
|
|
@end
|