22 lines
363 B
C
22 lines
363 B
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
|