UDocumentation
UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
DerivedFrom.h
Go to the documentation of this file.
1
// Copyright Epic Games, Inc. All Rights Reserved.
2
3
#pragma once
4
5
#include <type_traits>
6
7
namespace
UE
8
{
14
template
<
typename
DerivedType,
typename
BaseType>
15
concept
CDerivedFrom
= std::is_base_of_v<BaseType, DerivedType> && std::is_convertible_v<const volatile DerivedType*, const volatile BaseType*>;
16
}
UE::CDerivedFrom
Definition
DerivedFrom.h:15
UE
Definition
AdvancedWidgetsModule.cpp:13
Engine
Source
Runtime
Core
Public
Concepts
DerivedFrom.h
Generated by
1.9.8