// Copyright Epic Games, Inc. All Rights Reserved. /*============================================================================= DefineUPropertyMacros.h: macro'ed typedefs for FProperties =============================================================================*/ #ifndef UProperty #define UProperty DEPRECATED_MACRO(4.25, "UProperty has been renamed to FProperty") FProperty #endif #ifndef UNumericProperty #define UNumericProperty DEPRECATED_MACRO(4.25, "UNumericProperty has been renamed to FNumericProperty") FNumericProperty #endif #ifndef UByteProperty #define UByteProperty DEPRECATED_MACRO(4.25, "UByteProperty has been renamed to FByteProperty") FByteProperty #endif #ifndef UInt8Property #define UInt8Property DEPRECATED_MACRO(4.25, "UInt8Property has been renamed to FInt8Property") FInt8Property #endif #ifndef UInt16Property #define UInt16Property DEPRECATED_MACRO(4.25, "UInt16Property has been renamed to FInt16Property") FInt16Property #endif #ifndef UIntProperty #define UIntProperty DEPRECATED_MACRO(4.25, "UIntProperty has been renamed to FIntProperty") FIntProperty #endif #ifndef UInt64Property #define UInt64Property DEPRECATED_MACRO(4.25, "UInt64Property has been renamed to FInt64Property") FInt64Property #endif #ifndef UUInt16Property #define UUInt16Property DEPRECATED_MACRO(4.25, "UUInt16Property has been renamed to FUInt16Property") FUInt16Property #endif #ifndef UUInt32Property #define UUInt32Property DEPRECATED_MACRO(4.25, "UUInt32Property has been renamed to FUInt32Property") FUInt32Property #endif #ifndef UUInt64Property #define UUInt64Property DEPRECATED_MACRO(4.25, "UUInt64Property has been renamed to FUInt64Property") FUInt64Property #endif #ifndef UFloatProperty #define UFloatProperty DEPRECATED_MACRO(4.25, "UFloatProperty has been renamed to FFloatProperty") FFloatProperty #endif #ifndef UDoubleProperty #define UDoubleProperty DEPRECATED_MACRO(4.25, "UDoubleProperty has been renamed to FDoubleProperty") FDoubleProperty #endif #ifndef UBoolProperty #define UBoolProperty DEPRECATED_MACRO(4.25, "UBoolProperty has been renamed to FBoolProperty") FBoolProperty #endif #ifndef UObjectPropertyBase #define UObjectPropertyBase DEPRECATED_MACRO(4.25, "UObjectPropertyBase has been renamed to FObjectPropertyBase") FObjectPropertyBase #endif #ifndef UObjectProperty #define UObjectProperty DEPRECATED_MACRO(4.25, "UObjectProperty has been renamed to FObjectProperty") FObjectProperty #endif #ifndef UWeakObjectProperty #define UWeakObjectProperty DEPRECATED_MACRO(4.25, "UWeakObjectProperty has been renamed to FWeakObjectProperty") FWeakObjectProperty #endif #ifndef ULazyObjectProperty #define ULazyObjectProperty DEPRECATED_MACRO(4.25, "ULazyObjectProperty has been renamed to FLazyObjectProperty") FLazyObjectProperty #endif #ifndef USoftObjectProperty #define USoftObjectProperty DEPRECATED_MACRO(4.25, "USoftObjectProperty has been renamed to FSoftObjectProperty") FSoftObjectProperty #endif #ifndef UClassProperty #define UClassProperty DEPRECATED_MACRO(4.25, "UClassProperty has been renamed to FClassProperty") FClassProperty #endif #ifndef USoftClassProperty #define USoftClassProperty DEPRECATED_MACRO(4.25, "USoftClassProperty has been renamed to FSoftClassProperty") FSoftClassProperty #endif #ifndef UInterfaceProperty #define UInterfaceProperty DEPRECATED_MACRO(4.25, "UInterfaceProperty has been renamed to FInterfaceProperty") FInterfaceProperty #endif #ifndef UNameProperty #define UNameProperty DEPRECATED_MACRO(4.25, "UNameProperty has been renamed to FNameProperty") FNameProperty #endif #ifndef UStrProperty #define UStrProperty DEPRECATED_MACRO(4.25, "UStrProperty has been renamed to FStrProperty") FStrProperty #endif #ifndef UArrayProperty #define UArrayProperty DEPRECATED_MACRO(4.25, "UArrayProperty has been renamed to FArrayProperty") FArrayProperty #endif #ifndef UMapProperty #define UMapProperty DEPRECATED_MACRO(4.25, "UMapProperty has been renamed to FMapProperty") FMapProperty #endif #ifndef USetProperty #define USetProperty DEPRECATED_MACRO(4.25, "USetProperty has been renamed to FSetProperty") FSetProperty #endif #ifndef UStructProperty #define UStructProperty DEPRECATED_MACRO(4.25, "UStructProperty has been renamed to FStructProperty") FStructProperty #endif #ifndef UDelegateProperty #define UDelegateProperty DEPRECATED_MACRO(4.26, "UDelegateProperty has been renamed to FDelegateProperty") FDelegateProperty #endif #ifndef UMulticastDelegateProperty #define UMulticastDelegateProperty DEPRECATED_MACRO(4.25, "UMulticastDelegateProperty has been renamed to FMulticastDelegateProperty") FMulticastDelegateProperty #endif #ifndef UMulticastInlineDelegateProperty #define UMulticastInlineDelegateProperty DEPRECATED_MACRO(4.25, "UMulticastInlineDelegateProperty has been renamed to FMulticastInlineDelegateProperty") FMulticastInlineDelegateProperty #endif #ifndef UMulticastSparseDelegateProperty #define UMulticastSparseDelegateProperty DEPRECATED_MACRO(4.25, "UMulticastSparseDelegateProperty has been renamed to FMulticastSparseDelegateProperty") FMulticastSparseDelegateProperty #endif #ifndef UEnumProperty #define UEnumProperty DEPRECATED_MACRO(4.25, "UEnumProperty has been renamed to FEnumProperty") FEnumProperty #endif #ifndef UTextProperty #define UTextProperty DEPRECATED_MACRO(4.25, "UTextProperty has been renamed to FTextProperty") FTextProperty #endif