UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
WeakObjectPtrFwd.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3/*=============================================================================
4 WeakObjectPtrFwd.h: Weak object pointer forward declarations
5=============================================================================*/
6
7#pragma once
8
10
11struct FWeakObjectPtr;
12
13template <typename T> struct TIsPODType;
14template <typename T> struct TIsWeakPointerType;
15template <typename T> struct TIsZeroConstructType;
16
17template<> struct TIsPODType<FWeakObjectPtr> { enum { Value = true }; };
18template<> struct TIsZeroConstructType<FWeakObjectPtr> { enum { Value = true }; };
19template<> struct TIsWeakPointerType<FWeakObjectPtr> { enum { Value = true }; };
Definition WeakObjectPtr.h:49
Definition IsPODType.h:12
@ Value
Definition IsPODType.h:13
Definition UnrealTypeTraits.h:181
@ Value
Definition UnrealTypeTraits.h:182
Definition UnrealTypeTraits.h:172