~ubuntu-branches/ubuntu/trusty/gnustep-base/trusty

« back to all changes in this revision

Viewing changes to Headers/Foundation/NSTask.h

Tags: upstream-1.20.0
ImportĀ upstreamĀ versionĀ 1.20.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
extern "C" {
37
37
#endif
38
38
 
39
 
@interface NSTask : NSObject <GCFinalization>
 
39
@interface NSTask : NSObject
40
40
{
 
41
#if     GS_EXPOSE(NSTask)
 
42
@protected
41
43
  NSString      *_currentDirectoryPath;
42
44
  NSString      *_launchPath;
43
45
  NSArray       *_arguments;
51
53
  BOOL          _hasTerminated;
52
54
  BOOL          _hasCollected;
53
55
  BOOL          _hasNotified;
 
56
#endif
 
57
#if     !GS_NONFRAGILE
 
58
  void          *_unused;
 
59
#endif
54
60
}
55
61
 
56
62
+ (NSTask*) launchedTaskWithLaunchPath: (NSString*)path
116
122
}
117
123
#endif
118
124
 
 
125
#if     !NO_GNUSTEP && !defined(GNUSTEP_BASE_INTERNAL)
 
126
#import <GNUstepBase/NSTask+GNUstepBase.h>
 
127
#endif
 
128
 
119
129
#endif /* __NSTask_h_GNUSTEP_BASE_INCLUDE */