

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