UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
LinkerPlaceholderExportObject.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
8#include "UObject/Object.h"
10
11#include "LinkerPlaceholderExportObject.generated.h"
12
18UCLASS(MinimalAPI)
20{
21public:
23
25
26 // UObject interface
27 virtual void BeginDestroy() override;
28 // End of UObject interface
29
30 // FLinkerPlaceholderBase interface
31 virtual UObject* GetPlaceholderAsUObject() override { return (UObject*)(this); }
32 // End of FLinkerPlaceholderBase interface
33};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition LinkerPlaceholderBase.h:99
Definition UObjectGlobals.h:1292
static COREUOBJECT_API FObjectInitializer & Get()
Definition UObjectGlobals.cpp:5001
Definition LinkerPlaceholderExportObject.h:20
virtual UObject * GetPlaceholderAsUObject() override
Definition LinkerPlaceholderExportObject.h:31
Definition Object.h:95