// // IRObjectQueue.h // IRObjectQueue // // Created by Evadne Wu on 6/1/12. // Copyright (c) 2012 Iridia Productions. All rights reserved. // #import @protocol IRQueueableObject - (NSString *) reuseIdentifier; @end @interface IRObjectQueue : NSObject - (void) addObject:(id)object; - (id) dequeueObjectWithIdentifier:(NSString *)reuseIdentifier; - (void) removeAllObjects; @property (nonatomic, readwrite, assign) BOOL purgesAutomatically; // Default YES @end