You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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 |