forked from pmougin/F-Script
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathExecutionControl.h
More file actions
36 lines (28 loc) · 901 Bytes
/
ExecutionControl.h
File metadata and controls
36 lines (28 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* ExecutionControl.h Copyright (c) 1998-2001 Philippe Mougin. */
/* This software is Open Source. See the license. */
#import "FSNSObject.h"
@class ExecEngine;
@class Block;
@interface ExecutionControl : NSObject <NSCopying , NSCoding>
{
ExecEngine *execEngine;
Block *block;
}
+ executionControlWithExecEngine:(ExecEngine *)e block:(Block*)b;
+ (void)initialize;
- copy;
- copyWithZone:(NSZone *)zone;
- (void)dealloc;
- (void)encodeWithCoder:(NSCoder *)aCoder;
- (ExecEngine *)execEngine;
- (void)executionDidEnd;
- initWithExecEngine:(ExecEngine *)e block:(Block*)b;
- (id)initWithCoder:(NSCoder *)aDecoder;
///////////////////////////////// USER METHODS ////////////////////////
- (Block*) block;
- (ExecutionControl*) clone;
- (ExecutionControl*) dup;
- (void) return;
- (void) return:(id)rv;
- (void)setValue:(id)operand2;
@end