#include <mtsCallableVoidMethod.h>
Inheritance diagram for mtsCallableVoidMethod< _classType >:


Definition at line 46 of file mtsCallableVoidMethod.h.
| typedef _classType mtsCallableVoidMethod< _classType >::ClassType |
Typedef for the specific interface.
Definition at line 52 of file mtsCallableVoidMethod.h.
| typedef mtsCallableVoidMethod<ClassType> mtsCallableVoidMethod< _classType >::ThisType |
This type.
Definition at line 55 of file mtsCallableVoidMethod.h.
| typedef void(_classType::*) mtsCallableVoidMethod< _classType >::ActionType(void) |
Typedef for pointer to member function (method) of a specific class (_classType).
Definition at line 59 of file mtsCallableVoidMethod.h.
| mtsCallableVoidMethod< _classType >::mtsCallableVoidMethod | ( | void | ) | [inline] |
The constructor. Does nothing.
Definition at line 75 of file mtsCallableVoidMethod.h.
| mtsCallableVoidMethod< _classType >::mtsCallableVoidMethod | ( | ActionType | action, | |
| ClassType * | classInstantiation | |||
| ) | [inline] |
The constructor.
| action | Pointer to the member function that is to be called by the invoker of the command | |
| classInstantiation | Pointer to the receiver of the command |
Definition at line 82 of file mtsCallableVoidMethod.h.
| virtual mtsCallableVoidMethod< _classType >::~mtsCallableVoidMethod | ( | ) | [inline, virtual] |
The destructor. Does nothing
Definition at line 89 of file mtsCallableVoidMethod.h.
| void mtsCallableVoidMethod< _classType >::Execute | ( | void | ) | [inline, virtual] |
The execute method. Abstract method to be implemented by derived classes to run the actual operation on the receiver.
Implements mtsCallableVoidBase.
Definition at line 92 of file mtsCallableVoidMethod.h.
References mtsCallableVoidMethod< _classType >::Action, and mtsCallableVoidMethod< _classType >::ClassInstantiation.
| void mtsCallableVoidMethod< _classType >::ToStream | ( | std::ostream & | outputStream | ) | const [inline, virtual] |
Human readable description
Implements mtsCallableVoidBase.
Definition at line 97 of file mtsCallableVoidMethod.h.
References mtsObjectName().
ActionType mtsCallableVoidMethod< _classType >::Action [protected] |
The pointer to member function of the receiver class that is to be invoked for a particular instance of the command.
Definition at line 68 of file mtsCallableVoidMethod.h.
Referenced by mtsCallableVoidMethod< _classType >::Execute().
ClassType* mtsCallableVoidMethod< _classType >::ClassInstantiation [protected] |
Stores the receiver object of the command.
Definition at line 71 of file mtsCallableVoidMethod.h.
Referenced by mtsCallableVoidMethod< _classType >::Execute().