#ifndef YSARRAY_H #define YSARRAY_H #import "YSObject.h" @interface YSArray : YSObject { @public //public so you can index it directly id *array; int count; } -(void) addObject: (id) theObject; -(void) removeObject: (unsigned int) index; @end #endif