Navigation
API > API/Runtime > API/Runtime/CoreUObject
Metafunction which detects whether or not a class is an IInterface. Rules:
A UObject is not an IInterface.
A type without a UClassType typedef member is not an IInterface.
A type whose UClassType::StaticClassFlags does not have CLASS_Interface set is not an IInterface.
Otherwise, assume it's an IInterface.
| Name | TIsIInterface |
| Type | struct |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Templates/Casts.h |
| Include Path | #include "Templates/Casts.h" |
Syntax
template<typename T, bool bIsAUObject_IMPL>
struct TIsIInterface
Struct Specializations
| Name | Remarks |
|---|---|
| TIsIInterface< T, false > |
Enums
Public
| Name | Remarks |
|---|---|
| TIsIInterface |