home *** CD-ROM | disk | FTP | other *** search
- /* StorageAdditions.h
- * Written By: Thomas Burkholder
- *
- * You may freely copy, distribute, and reuse the code in this example.
- * NeXT disclaims any warranty of any kind, expressed or implied, as to its
- * fitness for any particular use.
- */
-
- #import <objc/Storage.h>
-
- // Basically, adds a few methods that List already has, that I want.
- @interface Storage (StorageAdditions)
-
- - (unsigned int)indexOf:(void *)anElement;
- - addElementIfAbsent:(void *)anElement;
-
- @end
-