18 lines
292 B
C
18 lines
292 B
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
|