Provides a template functor to wrap a function pointer to a memberfunction of an object as operation. More...
#include <xdispatch/operation.h>
Public Member Functions | |
ptr_operation (T *object, void(T::*function)()) | |
virtual void | operator() () |
virtual void | auto_delete (bool a) |
Change the auto_delete flag to prevent the iteration from being deleted after finishing its execution. | |
virtual bool | auto_delete () const |
Provides a template functor to wrap a function pointer to a memberfunction of an object as operation.
Definition at line 106 of file operation.h.
xdispatch::ptr_operation< T >::ptr_operation | ( | T * | object, |
void(T::*)() | function | ||
) | [inline] |
Definition at line 109 of file operation.h.
virtual void xdispatch::operation::auto_delete | ( | bool | a | ) | [inline, virtual, inherited] |
Change the auto_delete flag to prevent the iteration from being deleted after finishing its execution.
Defaults to true
Definition at line 61 of file operation.h.
virtual bool xdispatch::operation::auto_delete | ( | ) | const [inline, virtual, inherited] |
Definition at line 66 of file operation.h.
virtual void xdispatch::ptr_operation< T >::operator() | ( | ) | [inline, virtual] |
Implements xdispatch::operation.
Definition at line 111 of file operation.h.