home *** CD-ROM | disk | FTP | other *** search
-
- /* $Id: DoubleValueSortedList.h,v 1.1.1.1 1993/03/18 03:31:37 davis Exp $ */
-
- #import <objc/List.h>
-
- @interface DoubleValueSortedList:List
- {
- BOOL isAscending; /* YES = Ascending, NO = Descending */
- }
-
- - init;
-
- - setAscending:(BOOL)aBool;
- - (BOOL)isAscending;
-
- - addObject:anObject;
-
-
- /** Overridden to do nothing **/
-
- - insertObject:anObject at:(unsigned)index;
- - replaceObjectAt:(unsigned) index with:newObject;
-
-
- /** Private Methods **/
-
- - _reorderObjects;
-
- @end
-