|
cisst-saw
|
#include <mtsCallableQualifiedReadMethod.h>
Classes | |
| class | ConditionalCast |
| class | ConditionalCast< true, false, dummy > |
| class | ConditionalCast< false, true, dummy > |
| class | ConditionalCast< true, true, dummy > |
Public Types | |
| typedef mtsCallableQualifiedReadBase | BaseType |
| typedef _argumentType | ArgumentType |
| typedef _resultType | ResultType |
| typedef _classType | ClassType |
| typedef mtsCallableQualifiedReadMethod< ClassType, ArgumentType, ResultType > | ThisType |
| typedef bool(_classType::*) | ActionType(const ArgumentType &argument, ResultType &result) const |
Public Member Functions | |
| mtsCallableQualifiedReadMethod (void) | |
| mtsCallableQualifiedReadMethod (ActionType action, ClassType *classInstantiation) | |
| virtual | ~mtsCallableQualifiedReadMethod () |
| mtsExecutionResult | Execute (const mtsGenericObject &argument, mtsGenericObject &result) |
| void | ToStream (std::ostream &outputStream) const |
| Public Member Functions inherited from mtsCallableQualifiedReadBase | |
| mtsCallableQualifiedReadBase (void) | |
| virtual | ~mtsCallableQualifiedReadBase () |
Protected Attributes | |
| ActionType | Action |
| ClassType * | ClassInstantiation |
| typedef bool(_classType::*) mtsCallableQualifiedReadMethod< _classType, _argumentType, _resultType >::ActionType(const ArgumentType &argument, ResultType &result) const |
Typedef for pointer to member function (method) of a specific class (_classType).
| typedef _argumentType mtsCallableQualifiedReadMethod< _classType, _argumentType, _resultType >::ArgumentType |
| typedef mtsCallableQualifiedReadBase mtsCallableQualifiedReadMethod< _classType, _argumentType, _resultType >::BaseType |
| typedef _classType mtsCallableQualifiedReadMethod< _classType, _argumentType, _resultType >::ClassType |
Typedef for the specific interface.
| typedef _resultType mtsCallableQualifiedReadMethod< _classType, _argumentType, _resultType >::ResultType |
| typedef mtsCallableQualifiedReadMethod<ClassType, ArgumentType, ResultType> mtsCallableQualifiedReadMethod< _classType, _argumentType, _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 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.