Queue.h 142 B

123456789101112
  1. #import <Foundation/Foundation.h>
  2. @interface Queue : NSObject
  3. - (BOOL)isEmpty;
  4. - (id)remove;
  5. - (void)add:(id)item;
  6. + (Queue *)queue;
  7. @end