Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TDelegateRegistration_InRetValTy-
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void BindSP
(
const TSharedRef< UserClass, Mode >& InUserObjectRef, |
Binds a shared pointer-based member function delegate. | ||
void BindSP
(
const TSharedRef< UserClass, Mode >& InUserObjectRef, |
|||
void BindSP
(
UserClass* InUserObject, |
Binds a shared pointer-based member function delegate. | ||
void BindSP
(
const UserClass* InUserObject, |
BindSP(const TSharedRef< UserClass, Mode > &, typename TMemFunPtrType< false, UserClass, RetValType(ParamTypes..., std::decay_t< VarTypes >...)>::Type, VarTypes &&...)
Description
Binds a shared pointer-based member function delegate. Shared pointer delegates keep a weak reference to your object. You can use ExecuteIfBound() to call them.
| Name | BindSP |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Delegates/DelegateSignatureImpl.inl |
| Include Path | #include "Delegates/DelegateSignatureImpl.inl" |
template<typename UserClass, ESPMode Mode, typename... VarTypes>
void BindSP
(
const TSharedRef < UserClass, Mode > & InUserObjectRef,
typename TMemFunPtrType < false, UserClass, RetValType>::Type InFunc,
VarTypes &&... Vars
)
BindSP(const TSharedRef< UserClass, Mode > &, typename TMemFunPtrType< true, UserClass, RetValType(ParamTypes..., std::decay_t< VarTypes >...)>::Type, VarTypes &&...)
| Name | BindSP |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Delegates/DelegateSignatureImpl.inl |
| Include Path | #include "Delegates/DelegateSignatureImpl.inl" |
template<typename UserClass, ESPMode Mode, typename... VarTypes>
void BindSP
(
const TSharedRef < UserClass, Mode > & InUserObjectRef,
typename TMemFunPtrType < true, UserClass, RetValType>::Type InFunc,
VarTypes &&... Vars
)
BindSP(UserClass *, typename TMemFunPtrType< false, UserClass, RetValType(ParamTypes..., std::decay_t< VarTypes >...)>::Type, VarTypes &&...)
Description
Binds a shared pointer-based member function delegate.
Shared pointer delegates keep a weak reference to your object. You can use ExecuteIfBound() to call them.
| Name | BindSP |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Delegates/DelegateSignatureImpl.inl |
| Include Path | #include "Delegates/DelegateSignatureImpl.inl" |
template<typename UserClass, typename... VarTypes>
void BindSP
(
UserClass * InUserObject,
typename TMemFunPtrType < false, UserClass, RetValType>::Type InFunc,
VarTypes &&... Vars
)
BindSP(const UserClass *, typename TMemFunPtrType< true, UserClass, RetValType(ParamTypes..., std::decay_t< VarTypes >...)>::Type, VarTypes &&...)
| Name | BindSP |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Delegates/DelegateSignatureImpl.inl |
| Include Path | #include "Delegates/DelegateSignatureImpl.inl" |
template<typename UserClass, typename... VarTypes>
void BindSP
(
const UserClass * InUserObject,
typename TMemFunPtrType < true, UserClass, RetValType>::Type InFunc,
VarTypes &&... Vars
)