UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
NotifyHook.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3/*=============================================================================
4 CoreMisc.h: General-purpose file utilities.
5=============================================================================*/
6
7#pragma once
8
9#include "CoreMinimal.h"
10
11class FProperty;
13
14// Notification hook.
16{
17public:
19 virtual void NotifyPostChange( const FPropertyChangedEvent& PropertyChangedEvent, FProperty* PropertyThatChanged ) {}
21 COREUOBJECT_API virtual void NotifyPostChange( const FPropertyChangedEvent& PropertyChangedEvent, class FEditPropertyChain* PropertyThatChanged );
22};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition UnrealType.h:6738
Definition NotifyHook.h:16
virtual void NotifyPostChange(const FPropertyChangedEvent &PropertyChangedEvent, FProperty *PropertyThatChanged)
Definition NotifyHook.h:19
virtual void NotifyPreChange(FProperty *PropertyAboutToChange)
Definition NotifyHook.h:18
Definition UnrealType.h:174
Definition UnrealType.h:6865