mirror of
https://github.com/objective-see/BlockBlock.git
synced 2026-03-22 07:02:39 +00:00
57ca40fc7f
BlockBlock v1.0 (beta)
25 lines
481 B
Objective-C
25 lines
481 B
Objective-C
//
|
|
// file: ParentsWindowController.h
|
|
// project: BlockBlock (login item)
|
|
// description: window controller for process heirachy (header)
|
|
//
|
|
// created by Patrick Wardle
|
|
// copyright (c) 2017 Objective-See. All rights reserved.
|
|
//
|
|
|
|
@import Cocoa;
|
|
|
|
@interface ParentsWindowController : NSViewController <NSOutlineViewDataSource, NSOutlineViewDelegate>
|
|
{
|
|
|
|
}
|
|
|
|
/* PROPERTIES */
|
|
|
|
//process hierarchy
|
|
@property (nonatomic, retain)NSArray* processHierarchy;
|
|
|
|
/* METHODS */
|
|
|
|
@end
|