

Definition at line 42 of file mtsCallableWriteReturnMethod.h.
| typedef _classType mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::ClassType |
Typedef for the specific interface.
Definition at line 50 of file mtsCallableWriteReturnMethod.h.
| typedef mtsCallableWriteReturnMethod<ClassType, ArgumentType, ResultType> mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::ThisType |
This type.
Definition at line 53 of file mtsCallableWriteReturnMethod.h.
| typedef void(_classType::*) mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::ActionType(const ArgumentType &argument, ResultType &result) |
Typedef for pointer to member function (method) of a specific class (_classType).
Definition at line 57 of file mtsCallableWriteReturnMethod.h.
| mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::mtsCallableWriteReturnMethod | ( | void | ) | [inline] |
The constructor. Does nothing.
Definition at line 200 of file mtsCallableWriteReturnMethod.h.
| mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::mtsCallableWriteReturnMethod | ( | 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 207 of file mtsCallableWriteReturnMethod.h.
| virtual mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::~mtsCallableWriteReturnMethod | ( | ) | [inline, virtual] |
The destructor. Does nothing
Definition at line 214 of file mtsCallableWriteReturnMethod.h.
| mtsExecutionResult mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::Execute | ( | const mtsGenericObject & | argument, | |
| mtsGenericObject & | result | |||
| ) | [inline, virtual] |
The execute method. Abstract method to be implemented by derived classes to run the actual operation on the receiver.
Implements mtsCallableWriteReturnBase.
Definition at line 217 of file mtsCallableWriteReturnMethod.h.
References mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::Action, and mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::ClassInstantiation.
| void mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::ToStream | ( | std::ostream & | outputStream | ) | const [inline, virtual] |
Human readable description
Implements mtsCallableWriteReturnBase.
Definition at line 224 of file mtsCallableWriteReturnMethod.h.
References mtsObjectName().
ActionType mtsCallableWriteReturnMethod< _classType, _argumentType, _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 66 of file mtsCallableWriteReturnMethod.h.
Referenced by mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::Execute().
ClassType* mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::ClassInstantiation [protected] |
Stores the receiver object of the command.
Definition at line 69 of file mtsCallableWriteReturnMethod.h.
Referenced by mtsCallableWriteReturnMethod< _classType, _argumentType, _resultType >::Execute().