|
cisst-saw
|
#include <mtsCallableVoidReturnMethod.h>
Classes | |
| class | ConditionalCast |
| class | ConditionalCast< true, _dummy > |
Public Types | |
| typedef mtsCallableVoidReturnBase | BaseType |
| typedef _resultType | ResultType |
| typedef _classType | ClassType |
| typedef mtsCallableVoidReturnMethod< ClassType, ResultType > | ThisType |
| typedef void(_classType::*) | ActionType(ResultType &result) |
Public Member Functions | |
| mtsCallableVoidReturnMethod (void) | |
| mtsCallableVoidReturnMethod (ActionType action, ClassType *classInstantiation) | |
| virtual | ~mtsCallableVoidReturnMethod () |
| mtsExecutionResult | Execute (mtsGenericObject &result) |
| void | ToStream (std::ostream &outputStream) const |
| Public Member Functions inherited from mtsCallableVoidReturnBase | |
| mtsCallableVoidReturnBase (void) | |
| virtual | ~mtsCallableVoidReturnBase () |
Protected Attributes | |
| ActionType | Action |
| ClassType * | ClassInstantiation |
| typedef void(_classType::*) mtsCallableVoidReturnMethod< _classType, _resultType >::ActionType(ResultType &result) |
Typedef for pointer to member function (method) of a specific class (_classType).
| typedef mtsCallableVoidReturnBase mtsCallableVoidReturnMethod< _classType, _resultType >::BaseType |
| typedef _classType mtsCallableVoidReturnMethod< _classType, _resultType >::ClassType |
Typedef for the specific interface.
| typedef _resultType mtsCallableVoidReturnMethod< _classType, _resultType >::ResultType |
| typedef mtsCallableVoidReturnMethod<ClassType, ResultType> mtsCallableVoidReturnMethod< _classType, _resultType >::ThisType |
This type.
|
inline |
The constructor. Does nothing.
|
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 |
|
inlinevirtual |
The destructor. Does nothing
|
inlinevirtual |
The execute method. Abstract method to be implemented by derived classes to run the actual operation on the receiver.
Implements mtsCallableVoidReturnBase.
|
inlinevirtual |
Human readable description
Implements mtsCallableVoidReturnBase.
|
protected |
The pointer to member function of the receiver class that is to be invoked for a particular instance of the command.
|
protected |
Stores the receiver object of the command.