UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ARSupportInterface.cpp File Reference

Macros

#define DEFINE_AR_SI_DELEGATE_FUNCS(DelegateName)
 

Macro Definition Documentation

◆ DEFINE_AR_SI_DELEGATE_FUNCS

#define DEFINE_AR_SI_DELEGATE_FUNCS (   DelegateName)
Value:
FDelegateHandle FARSupportInterface::Add##DelegateName##Delegate_Handle(const F##DelegateName##Delegate& Delegate) \
{ \
if (ARImplemention) \
{ \
return ARImplemention->Add##DelegateName##Delegate_Handle(Delegate); \
} \
return Delegate.GetHandle(); \
} \
void FARSupportInterface::Clear##DelegateName##Delegate_Handle(FDelegateHandle& Handle) \
{ \
if (ARImplemention) \
{ \
ARImplemention->Clear##DelegateName##Delegate_Handle(Handle); \
return; \
} \
Handle.Reset(); \
} \
void FARSupportInterface::Clear##DelegateName##Delegates(FDelegateUserObject Object) \
{ \
if (ARImplemention) \
{ \
ARImplemention->Clear##DelegateName##Delegates(Object); \
} \
}
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
void * FDelegateUserObject
Definition IDelegateInstance.h:107
Definition IDelegateInstance.h:14
FDelegates Delegates
Definition NavigationSystemBase.cpp:234