Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UClass
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static UClass * FindCommonBase
(
const TArray< UClass* >& InClasses |
Finds the common base class that parents the array of classes passed in. | UObject/Class.h | |
static UClass * FindCommonBase
(
UClass* InClassA, |
Finds the common base class that parents the two classes passed in. | UObject/Class.h |
FindCommonBase(const TArray< UClass * > &)
Description
Finds the common base class that parents the array of classes passed in.
| Name | FindCommonBase |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
| Include Path | #include "UObject/Class.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/Class.cpp |
static UClass * FindCommonBase
(
const TArray < UClass * > & InClasses
)
the common base class or NULL
Parameters
| Name | Remarks |
|---|---|
| InClasses | the array of classes to find the common base for |
FindCommonBase(UClass , UClass )
Description
Finds the common base class that parents the two classes passed in.
| Name | FindCommonBase |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
| Include Path | #include "UObject/Class.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/Class.cpp |
static UClass * FindCommonBase
(
UClass * InClassA,
UClass * InClassB
)
the common base class or NULL
Parameters
| Name | Remarks |
|---|---|
| InClassA | the first class to find the common base for |
| InClassB | the second class to find the common base for |