|
cisst-saw
|
#include <mtsCallableReadMethod.h>
Public Types | |
| typedef mtsCallableReadBase | BaseType |
| typedef _classType | ClassType |
| typedef mtsCallableReadMethodGeneric< ClassType > | ThisType |
| typedef bool(_classType::*) | ActionType(mtsGenericObject &result) const |
Public Member Functions | |
| mtsCallableReadMethodGeneric (void) | |
| mtsCallableReadMethodGeneric (ActionType action, ClassType *classInstantiation) | |
| virtual | ~mtsCallableReadMethodGeneric () |
| mtsExecutionResult | Execute (mtsGenericObject &result) |
| void | ToStream (std::ostream &outputStream) const |
| Public Member Functions inherited from mtsCallableReadBase | |
| mtsCallableReadBase (void) | |
| virtual | ~mtsCallableReadBase () |
Protected Attributes | |
| ActionType | Action |
| ClassType * | ClassInstantiation |
| typedef bool(_classType::*) mtsCallableReadMethodGeneric< _classType >::ActionType(mtsGenericObject &result) const |
Typedef for pointer to member function (method) of a specific class (_classType).
| typedef mtsCallableReadBase mtsCallableReadMethodGeneric< _classType >::BaseType |
| typedef _classType mtsCallableReadMethodGeneric< _classType >::ClassType |
Typedef for the specific interface.
| typedef mtsCallableReadMethodGeneric<ClassType> mtsCallableReadMethodGeneric< _classType >::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 mtsCallableReadBase.
|
inlinevirtual |
Human readable description
Implements mtsCallableReadBase.
|
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.