V-ART
|
An object that is activated in a callback-like scheme. More...
#include <callback.h>
Public Member Functions | |
virtual void | Activate ()=0 |
virtual | ~CallBack () |
An object that is activated in a callback-like scheme.
A callback object is an object that implements the Activate() method. Whenever a V-ART class needs to run unknown code at unkown objects, it calls the Activate of a callback object. In order to use a call-back, derive the class, adding attributes (usually pointers to the objects that will be activated) and reimplement the Activate method.
Definition at line 18 of file callback.h.
|
inlinevirtual |
Definition at line 24 of file callback.h.
|
pure virtual |