| |||
| Home > Class Reference > The CADISimulationCallback class |
CADISimulationCallback is the base class
for simulation callbacks. It enables registering as a listener for
system-wide callbacks.
Example A.7. The CADISimulationCallback class
class CADI_WEXP CADISimulationCallback : public CAInterface
{
public:
// Return the CAInterface name for this interface.
static if_name_t IFNAME() { return "eslapi.CADISimulationCallback2"; }
// Specify the current minor revision for this interface.
static if_rev_t IFREVISION() { return 0; }
virtual void simMessage(const char *message) = 0;
virtual void simShutdown() = 0;
virtual void simKilled() = 0;
};