Files
TaskExplorer/NSMutableArray+QueueAdditions.h
T
Patrick Wardle 205e24d309 version 2.0.0
-avoid UI calls when run in cmdline mode
 -hide icon when run in cmdline mode
 -option to scan single process
2018-12-21 20:19:09 -10:00

28 lines
373 B
Objective-C

//
// NSMutableArray+QueueAdditions.h
// BlockBlock
//
// Created by Patrick Wardle on 9/26/14.
// Copyright (c) 2014 Objective-See. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSMutableArray (QueueAdditions)
{
}
//METHODS
//remove first object
-(id)dequeue;
//add to end
-(void)enqueue:(id)obj;
//check if empty
-(BOOL)empty;
@end