Files
UnrealEngineUWP/Engine/Source/Runtime/CoreUObject/Private/Interface.cpp
Mikolaj Sieluzycki 4f4f4b08ba Remove headers from CoreUObjectPrivate.h that are included 0 or 1 time in CoreUObject module.
#codereview Robert.Manuszewski

[CL 2339651 by Mikolaj Sieluzycki in Main branch]
2014-10-24 08:08:58 -04:00

23 lines
550 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "CoreUObjectPrivate.h"
#include "Interface.h"
#if WITH_EDITOR
IMPLEMENT_CORE_INTRINSIC_CLASS(UInterface, UObject,
{
Class->ClassAddReferencedObjects = &UInterface::AddReferencedObjects;
Class->SetMetaData(TEXT("IsBlueprintBase"), TEXT("true"));
Class->SetMetaData(TEXT("CannotImplementInterfaceInBlueprint"), TEXT(""));
}
);
#else
IMPLEMENT_CORE_INTRINSIC_CLASS(UInterface, UObject,
{
Class->ClassAddReferencedObjects = &UInterface::AddReferencedObjects;
}
);
#endif