[#BloombergLP-bdlf-Overloaded_ConstMemberFunctionPointer] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlf.adoc[bdlf]::Overloaded_ConstMemberFunctionPointer :relfileprefix: ../../ :mrdocs: The class Overloaded_ConstMemberFunctionPointer wraps a member function pointer. It is implicitly constructible from the pointer, and provides an `operator()` that takes an object of the appropriate type and other arguments, and forwards them on to the underlying function. == Synopsis Declared in `<bdlf_overloaded.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class OBJ, class RET, class... ARGS> struct Overloaded_ConstMemberFunctionPointer; ---- == Type Aliases [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bdlf/Overloaded_ConstMemberFunctionPointer/FpType.adoc[`FpType`] | Alias for a member function pointer of the given signature. |=== == Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bdlf/Overloaded_ConstMemberFunctionPointer/2constructor.adoc[`Overloaded_ConstMemberFunctionPointer`] [.small]#[constructor]# | Construct this object from the specified `f`. | xref:BloombergLP/bdlf/Overloaded_ConstMemberFunctionPointer/operator_call.adoc[`operator()`] | Call the member function passed to the constructor using the specified `obj` with the specified `args`, and return the result of the call. |=== == Data Members [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bdlf/Overloaded_ConstMemberFunctionPointer/d_fp.adoc[`d_fp`] | Member function pointer of the given signature. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#