UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
BaseStructureProvider.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5class UScriptStruct;
6
7template <typename T>
8struct TBaseStructure;
9
14{
15 template <typename T>
16 auto Requires(UScriptStruct*& StructRef) -> decltype(
17 StructRef = TBaseStructure<T>::Get()
18 );
19};
Definition Class.h:1720
Definition BaseStructureProvider.h:14
auto Requires(UScriptStruct *&StructRef) -> decltype(StructRef=TBaseStructure< T >::Get())
static UScriptStruct * Get()
Definition Class.h:5275
Definition Class.h:5288