Files
UnrealEngineUWP/Engine/Source/Runtime/CoreUObject/Public/Interface.h
2014-03-14 14:13:41 -04:00

28 lines
409 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ObjectBase.h"
/**
* Base class for all interfaces
*
*/
class COREUOBJECT_API UInterface : public UObject
{
DECLARE_CLASS_INTRINSIC(UInterface,UObject,CLASS_Interface|CLASS_Abstract,CoreUObject)
};
class COREUOBJECT_API IInterface
{
protected:
virtual ~IInterface() {}
public:
typedef UInterface UClassType;
};