aboutsummaryrefslogtreecommitdiffstats
path: root/NSTask.h
diff options
context:
space:
mode:
Diffstat (limited to 'NSTask.h')
-rw-r--r--NSTask.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/NSTask.h b/NSTask.h
deleted file mode 100644
index 7b51c23..0000000
--- a/NSTask.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
-* This header is generated by classdump-dyld 1.0
-* on Thursday, January 25, 2018 at 11:20:38 PM Eastern European Standard Time
-* Operating System: Version 11.1.2 (Build 15B202)
-* Image Source: /System/Library/Frameworks/Foundation.framework/Foundation
-* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
-*/
-
-#import <Foundation/Foundation.h>
-
-@interface NSTask : NSObject
-
-@property (copy) NSURL * executableURL;
-@property (copy) NSArray * arguments;
-@property (copy) NSDictionary * environment;
-@property (copy) NSURL * currentDirectoryURL;
-@property (retain) id standardInput;
-@property (retain) id standardOutput;
-@property (retain) id standardError;
-@property (readonly) int processIdentifier;
-@property (getter=isRunning, readonly) BOOL running;
-@property (readonly) int terminationStatus;
-@property (readonly) long long terminationReason;
-@property (copy) id terminationHandler;
-@property (assign) long long qualityOfService;
-+ (id)currentTaskDictionary;
-+ (id)launchedTaskWithDictionary:(id)arg1;
-+ (id)launchedTaskWithLaunchPath:(id)arg1 arguments:(id)arg2;
-+ (id)launchedTaskWithExecutableURL:(id)arg1 arguments:(id)arg2 error:(out id*)arg3 terminationHandler:(/*^block*/id)arg4;
-- (void)waitUntilExit;
-- (id)currentDirectoryPath;
-- (void)setCurrentDirectoryPath:(id)arg1;
-- (id)launchPath;
-- (void)setLaunchPath:(id)arg1;
-- (void)launch;
-- (BOOL)launchAndReturnError:(id*)arg1;
-- (void)interrupt;
-- (long long)suspendCount;
-- (BOOL)suspend;
-- (BOOL)resume;
-- (void)terminate;
-- (NSArray *)arguments;
-@end