13 lines
222 B
C
13 lines
222 B
C
|
#import "REAValueNode.h"
|
||
|
|
||
|
@interface REAParamNode : REAValueNode
|
||
|
|
||
|
- (void)beginContext:(NSNumber*) ref
|
||
|
prevCallID:(NSNumber*) prevCallID;
|
||
|
- (void)endContext;
|
||
|
- (void)start;
|
||
|
- (void)stop;
|
||
|
- (BOOL)isRunning;
|
||
|
@end
|
||
|
|