VICI
0.11.815
Visual Chart Interpreter
|
A stub version of the Vici module. More...
#include <vici/libifstubs.h>
Public Member Functions | |
virtual Interp::Interpreter * | getInterpreter () |
Get a reference to the interpreter object. | |
virtual void | openFile (const VICI::Path &) |
Set the file to execute. | |
virtual void | autoStart () |
Start the script as soon as the GUI is ready. | |
virtual void | setValue (csr varName, csr value) |
this gets called when a script variable has a change of value More... | |
virtual void | setFile (int state, csr filename) |
this gets called when a monitored file changes state. More... | |
virtual void | setCursor (ThreadId, NodeId) |
this gets called as the shell steps through the script More... | |
virtual void | breakReached (ThreadId, NodeId) |
this gets called when a break point is reached More... | |
virtual void | dataReady (NodeId) |
this gets called when data is available on a display More... | |
virtual void | reportError (Severity, csr) |
This gets called if an error is detected. More... | |
virtual void | done () |
this gets called when the script completes | |
Public Member Functions inherited from VICI::Vici | |
virtual | ~Vici () |
virtual destructor | |
Public Member Functions inherited from VICI::Interp::InterpreterClient | |
virtual | ~InterpreterClient () |
virtual destructor | |
A stub version of the Vici module.
this gets called when a break point is reached
tid | the thread which reached the breakpoint |
node | the location of the breakpoint |
Implements VICI::Interp::InterpreterClient.
|
virtual |
this gets called when data is available on a display
node | the node of the display object in the flowchart |
Implements VICI::Interp::InterpreterClient.
This gets called if an error is detected.
msg | The text of the error message. |
sev | The severity of the error |
Implements VICI::Interp::InterpreterClient.
this gets called as the shell steps through the script
tid | the thread which changed to executing this node |
node | the node that is currently being executed |
Implements VICI::Interp::InterpreterClient.
|
virtual |
this gets called when a monitored file changes state.
state | this needs to be defined |
filename | the name of the file that changed |
Implements VICI::Interp::InterpreterClient.
this gets called when a script variable has a change of value
varName | the name of the variable that changed value |
value | the new value of the variable |
Implements VICI::Interp::InterpreterClient.