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