mirror of
https://github.com/objective-see/TaskExplorer.git
synced 2026-03-22 07:02:39 +00:00
-avoid UI calls when run in cmdline mode -hide icon when run in cmdline mode -option to scan single process
28 lines
373 B
Objective-C
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
|