Navigation
API > API/Runtime > API/Runtime/Analytics > API/Runtime/Analytics/FAnalyticsEventAttribute
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Default ctor since we declare a custom ctor. | AnalyticsEventAttribute.h | ||
FAnalyticsEventAttribute
(
const FAnalyticsEventAttribute& RHS |
Reinstate the default copy ctor because that one still works fine. | AnalyticsEventAttribute.h | |
| Hack to allow copy ctor using an rvalue-ref. | AnalyticsEventAttribute.h | ||
FAnalyticsEventAttribute
(
FString InName, |
AnalyticsEventAttribute.h |
FAnalyticsEventAttribute()
Description
Default ctor since we declare a custom ctor.
The implementation of this class references deprecated members. Don't fire warnings for these. For this reason we actually implement the entire class out-of-line, but still in the header files, so we can wrap all the implementations in DISABLE macro easily.
| Name | FAnalyticsEventAttribute |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h |
| Include Path | #include "AnalyticsEventAttribute.h" |
FAnalyticsEventAttribute()
FAnalyticsEventAttribute(const FAnalyticsEventAttribute &)
Description
Reinstate the default copy ctor because that one still works fine.
| Name | FAnalyticsEventAttribute |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h |
| Include Path | #include "AnalyticsEventAttribute.h" |
FAnalyticsEventAttribute
(
const FAnalyticsEventAttribute & RHS
)
FAnalyticsEventAttribute(FAnalyticsEventAttribute &&)
Description
Hack to allow copy ctor using an rvalue-ref. This class only "sort of" acts like an immutable class because the const members prevents assignment, which was not intended when this code was changed.
| Name | FAnalyticsEventAttribute |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h |
| Include Path | #include "AnalyticsEventAttribute.h" |
FAnalyticsEventAttribute
(
FAnalyticsEventAttribute && RHS
)
FAnalyticsEventAttribute(FString, ValueType &&)
| Name | FAnalyticsEventAttribute |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h |
| Include Path | #include "AnalyticsEventAttribute.h" |
template<typename ValueType>
FAnalyticsEventAttribute
(
FString InName,
ValueType && InValue
)