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
7namespace 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}
Definition DerivedFrom.h:15
Definition AdvancedWidgetsModule.cpp:13