

Definition at line 42 of file mtsCallableVoidReturnMethod.h.
| typedef _classType mtsCallableVoidReturnMethod< _classType, _resultType >::ClassType |
Typedef for the specific interface.
Definition at line 49 of file mtsCallableVoidReturnMethod.h.
| typedef mtsCallableVoidReturnMethod<ClassType, ResultType> mtsCallableVoidReturnMethod< _classType, _resultType >::ThisType |
This type.
Definition at line 52 of file mtsCallableVoidReturnMethod.h.
| typedef void(_classType::*) mtsCallableVoidReturnMethod< _classType, _resultType >::ActionType(ResultType &result) |
Typedef for pointer to member function (method) of a specific class (_classType).
Definition at line 56 of file mtsCallableVoidReturnMethod.h.
| mtsCallableVoidReturnMethod< _classType, _resultType >::mtsCallableVoidReturnMethod | ( | void | ) | [inline] |
The constructor. Does nothing.
Definition at line 115 of file mtsCallableVoidReturnMethod.h.
| mtsCallableVoidReturnMethod< _classType, _resultType >::mtsCallableVoidReturnMethod | ( | 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 122 of file mtsCallableVoidReturnMethod.h.
| virtual mtsCallableVoidReturnMethod< _classType, _resultType >::~mtsCallableVoidReturnMethod | ( | ) | [inline, virtual] |
The destructor. Does nothing
Definition at line 129 of file mtsCallableVoidReturnMethod.h.
| mtsExecutionResult mtsCallableVoidReturnMethod< _classType, _resultType >::Execute | ( | mtsGenericObject & | result | ) | [inline, virtual] |
The execute method. Abstract method to be implemented by derived classes to run the actual operation on the receiver.
Implements mtsCallableVoidReturnBase.
Definition at line 132 of file mtsCallableVoidReturnMethod.h.
References mtsCallableVoidReturnMethod< _classType, _resultType >::Action, and mtsCallableVoidReturnMethod< _classType, _resultType >::ClassInstantiation.
| void mtsCallableVoidReturnMethod< _classType, _resultType >::ToStream | ( | std::ostream & | outputStream | ) | const [inline, virtual] |
Human readable description
Implements mtsCallableVoidReturnBase.
Definition at line 138 of file mtsCallableVoidReturnMethod.h.
References mtsObjectName().
ActionType mtsCallableVoidReturnMethod< _classType, _resultType >::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 65 of file mtsCallableVoidReturnMethod.h.
Referenced by mtsCallableVoidReturnMethod< _classType, _resultType >::Execute().
ClassType* mtsCallableVoidReturnMethod< _classType, _resultType >::ClassInstantiation [protected] |
Stores the receiver object of the command.
Definition at line 68 of file mtsCallableVoidReturnMethod.h.
Referenced by mtsCallableVoidReturnMethod< _classType, _resultType >::Execute().