Preparing to add widget support
[RExecServer.git] / RInterpreterProtocol.h
blob63ebe2f74f40d0917312fcd8864735524339a918
1 #import <Cocoa/Cocoa.h>
3 //Protocol exported by the RInterpreter
4 @protocol RInterpreterProtocol
6 //Setting up the Console
7 - (void)setDelegate:(id)delegate;
8 - (id)delegate;
10 - (void)awakeConsole;
12 - (NSArray*)devices;
15 @end