Definition in file xst_action_helpers_traced.h.
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Namespaces | |
| namespace | cttl_impl |
Defines | |
| #define | CTTL_MEMBER_ACTION(xobject, xaction, xargument) cttl::action( xobject, xaction, xargument ) |
| Macro to create closure for member function with one argument. | |
| #define | CTTL_MEMBER_ACTION_NOARG(xobject, xaction) cttl::action( xobject, xaction ) |
| Macro to create closure for member function with no arguments. | |
| #define | CTTL_STATIC_ACTION(xaction, xargument) cttl::action( xaction, xargument ) |
| Macro to create closure for free function with one argument. | |
| #define | CTTL_STATIC_ACTION_NOARG(xreseulttype, xaction) cttl::action< xreseulttype >( xaction ) |
| Macro to create closure for free function with no arguments. | |
Functions | |
| template<typename ObjectT, typename MemberActionT> | |
| xst_member_action< ObjectT &, MemberActionT, void, typename MemberActionT::result_type > | xst_traced_action (ObjectT *pobject_, MemberActionT action_) |
| Helper function to create closure object for member function with no arguments. | |
| template<typename ObjectT, typename MemberActionT> | |
| xst_member_action< ObjectT const &, MemberActionT, void, typename MemberActionT::result_type > | xst_traced_action (ObjectT const &object_, MemberActionT action_) |
| Helper function to create closure object for constant member function with no arguments. | |
| template<typename ObjectT, typename MemberActionT, typename ArgumentT> | |
| xst_member_action< ObjectT &, MemberActionT, ArgumentT const &, typename MemberActionT::result_type > | xst_traced_action (ObjectT *pobject_, MemberActionT action_, ArgumentT const &argument_) |
| Helper function to create closure object for member function with one constant argument. | |
| template<typename ObjectT, typename MemberActionT, typename ArgumentT> | |
| xst_member_action< ObjectT const &, MemberActionT, ArgumentT const &, typename MemberActionT::result_type > | xst_traced_action (ObjectT const &object_, MemberActionT action_, ArgumentT const &argument_) |
| Helper function to create closure object for constant member function with one constant argument. | |
| template<typename ObjectT, typename MemberActionT, typename ArgumentT> | |
| xst_member_action< ObjectT &, MemberActionT, ArgumentT &, typename MemberActionT::result_type > | xst_traced_action (ObjectT *pobject_, MemberActionT action_, ArgumentT *pargument_) |
| Helper function to create closure object for member function with one mutable argument. | |
| template<typename ObjectT, typename MemberActionT, typename ArgumentT> | |
| xst_member_action< ObjectT const &, MemberActionT, ArgumentT &, typename MemberActionT::result_type > | xst_traced_action (ObjectT const &object_, MemberActionT action_, ArgumentT *pargument_) |
| Helper function to create closure object for constant member function with one mutable argument. | |
| template<typename ReturnT, typename StaticActionT> | |
| xst_static_action< StaticActionT, void, ReturnT > | xst_traced_action (StaticActionT action_) |
| Helper function to create closure object for free function with no arguments. | |
| template<typename StaticActionT, typename ArgumentT> | |
| xst_static_action< StaticActionT, ArgumentT const &, typename StaticActionT::result_type > | xst_traced_action (StaticActionT action_, ArgumentT const &argument_) |
| Helper function to create closure object for free function with one constant argument. | |
| template<typename StaticActionT, typename ArgumentT> | |
| xst_static_action< StaticActionT, ArgumentT &, typename StaticActionT::result_type > | xst_traced_action (StaticActionT action_, ArgumentT *pargument_) |
| Helper function to create closure object for free function with one mutable argument. | |
|
|
Macro to create closure for member function with one argument.
Definition at line 45 of file xst_action_helpers_traced.h. |
|
|
Macro to create closure for member function with no arguments.
Definition at line 47 of file xst_action_helpers_traced.h. |
|
|
Macro to create closure for free function with one argument.
Definition at line 49 of file xst_action_helpers_traced.h. |
|
|
Macro to create closure for free function with no arguments.
Definition at line 51 of file xst_action_helpers_traced.h. |
|
||||||||||||
|
||||||||||||
|
Helper function to create closure object for constant member function with no arguments.
Definition at line 408 of file xst_action_helpers_traced.h. |
|
||||||||||||||||
|
Helper function to create closure object for member function with one constant argument.
Definition at line 363 of file xst_action_helpers_traced.h. |
|
||||||||||||||||
|
Helper function to create closure object for constant member function with one constant argument.
Definition at line 311 of file xst_action_helpers_traced.h. |
|
||||||||||||||||
|
Helper function to create closure object for member function with one mutable argument.
Definition at line 261 of file xst_action_helpers_traced.h. |
|
||||||||||||||||
|
Helper function to create closure object for constant member function with one mutable argument.
Definition at line 209 of file xst_action_helpers_traced.h. |
|
|
Helper function to create closure object for free function with no arguments.
Definition at line 160 of file xst_action_helpers_traced.h. |
|
||||||||||||
|
Helper function to create closure object for free function with one constant argument.
Definition at line 123 of file xst_action_helpers_traced.h. |
|
||||||||||||
|
Helper function to create closure object for free function with one mutable argument.
Definition at line 80 of file xst_action_helpers_traced.h. |
1.3.9.1