NX Open C++ Reference Guide
|
Template class for callbacks with two input arguments that are member functions of a class. More...
Public Types | |
typedef Result(T::* | FunctionType )(Arg1, Arg2) |
Function signature for callback function attached to this template callback class. | |
typedef Callback2MemberFunction< T, Result, Arg1, Arg2 > | MyClass |
Template typedef of class signature. | |
![]() | |
typedef Arg1 | Arg1Type |
Type of first input argument of callback function. | |
typedef Arg2 | Arg2Type |
Type of second input argument of callback function. | |
typedef Result | ResultType |
Return type of callback function. | |
Public Member Functions | |
Callback2MemberFunction (T *object, FunctionType fn) | |
Constructor. | |
virtual BaseCallback * | Clone () const |
Function interface for clone operation. | |
virtual bool | Equals (const BaseCallback &other) const |
Function interface for equality operation. | |
virtual Result | operator() (Arg1 a1, Arg2 a2) const |
Function call operator function to invoke callback member function attached to this Callback2MemberFunction instance. | |
Template class for callbacks with two input arguments that are member functions of a class.
Template type T is the class that the callback function is a member function of. The return type of the callback function is the template type Result.
typedef Result(T::* NXOpen::Callback2MemberFunction< T, Result, Arg1, Arg2 >::FunctionType)(Arg1, Arg2) |
Function signature for callback function attached to this template callback class.
typedef Callback2MemberFunction<T, Result, Arg1, Arg2> NXOpen::Callback2MemberFunction< T, Result, Arg1, Arg2 >::MyClass |
Template typedef of class signature.
Used to simplify implementation of callback framework methods.
NXOpen::Callback2MemberFunction< T, Result, Arg1, Arg2 >::Callback2MemberFunction | ( | T * | object, |
FunctionType | fn | ||
) |
Constructor.
|
virtual |
Function interface for clone operation.
Derived classes will define this function to implement a deep copy operation.
Implements NXOpen::BaseCallback.
|
virtual |
Function interface for equality operation.
Implements NXOpen::BaseCallback.
|
virtual |
Function call operator function to invoke callback member function attached to this Callback2MemberFunction instance.
Implements NXOpen::Callback2< Result, Arg1, Arg2 >.