Files
UnrealEngineUWP/Engine/Source/Programs/UnrealHeaderTool/Resources/UHTDebugging/TestDeprecatedObject.h
Jaroslaw Palczynski b8c4d83b9c Enabling UHT to digest GENERATED_BODY instead of GENERATED_*_BODY.
#codereview Robert.Manuszewski

[CL 2481360 by Jaroslaw Palczynski in Main branch]
2015-03-17 06:02:26 -04:00

22 lines
383 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "TestDeprecatedObject.generated.h"
namespace EFoo
{
enum Bar
{
Example,
};
}
UCLASS(deprecated)
class UDEPRECATED_TestDeprecatedObject : public UObject
{
GENERATED_BODY()
public:
UDEPRECATED_TestDeprecatedObject(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
};