#include <command.h>
Inheritance diagram for glift::Command:

Example:
AClass a;
MemberCommand0<AClass>* callback = new MemberCommand0(&a, &AClass::daCallBack);
callback->execute(); //Calls a.daCallBack()
Command - Base class
Definition at line 52 of file command.h.
Public Member Functions | |
| virtual | ~Command () |
| virtual void | execute ()=0 |
| virtual Command * | clone ()=0 |
Protected Member Functions | |
| Command () | |
|
|
Definition at line 24 of file command.cpp. |
|
|
|
|
|
Implemented in glift::Command0, and glift::MemberCommand0< Receiver >. |
|
|
Implemented in glift::Command0, and glift::MemberCommand0< Receiver >. Referenced by glift::DispList::compile(). |