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