#import @interface Cache : NSObject { } + (Cache *) getInstance; + (NSMutableArray *) getTheArray; - (void) removeItem: (NSString *) theID; + (void) removeArrayItem: (NSString *) theID; - (id) get: (NSString *) theID; - (void) put: (NSString *) theID with: (id) theObject; - (void) touch: (NSString *) theID; - (bool) containsKey: (NSString *) theID; @end