Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/OverrideVoidReturnInvoker.h |
| Include | #include "OverrideVoidReturnInvoker.h" |
Syntax
template<typename ReturnType, typename FuncType>
struct TOverrideVoidReturnInvoker
Remarks
Wraps invocation of a function that can return a value or not. If it doesn't, the function call is wrapped into a function that will invoke the provided function and return the provided default value.
Variables
| Type | Name | Description | |
|---|---|---|---|
| ReturnType | DefaultValue | ||
| FuncType | Function |
Constructors
| Type | Name | Description | |
|---|---|---|---|
TOverrideVoidReturnInvoker
(
ReturnType InDefaultValue, |
Operators
| Type | Name | Description | |
|---|---|---|---|
| bool | operator()
(
ArgTypes&&... Args |