23 lines
364 B
Objective-C
23 lines
364 B
Objective-C
//
|
|
// NSString+CogSort.h
|
|
// Cog
|
|
//
|
|
// Created by Matthew Grinshpun on 16/02/08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface NSString (CogSort)
|
|
|
|
- (NSComparisonResult)compareTrackNumbers:(NSString *)aString;
|
|
|
|
@end
|
|
|
|
@interface NSURL (CogSort)
|
|
|
|
- (NSComparisonResult)compareTrackNumbers:(NSURL *)aURL;
|
|
|
|
@end
|