|
Public Types |
| typedef R(C::* | ConstFunctionType )(P0, P1, P2) const |
| typedef R(C::* | FunctionType )(P0, P1, P2) |
Public Member Functions |
| | TypedMethodInfo3 (const std::string &qname, ConstFunctionType cf, const ParameterInfoList &plist) |
| | TypedMethodInfo3 (const std::string &qname, FunctionType f, const ParameterInfoList &plist) |
| bool | isConst () const |
| | Returns whether the reflected method is const or not.
|
| bool | isStatic () const |
| | Returns whether the reflected method is static or not.
|
| Value | invoke (const Value &instance, ValueList &args) const |
| | Invokes the reflected method dynamically on the given const instance, passing it the arguments as a list of Value objects.
|
| Value | invoke (Value &instance, ValueList &args) const |
| | Invokes the reflected method dynamically on the given instance, passing it the arguments as a list of Value objects.
|