Files
UnrealEngineUWP/Engine/Source/Programs/UnrealHeaderTool/Resources/UHTDebugging/TestInterface.h
Joe Conley c12a880a0c Unshelved from pending changelist '4791207':
Source=CL 4772220 in //UE4/Main/...
Acknowledger=joe.conley (Thu Jan 24 2019 00:26:59 GMT+0000 (Coordinated Universal Time))
ShelfCl=4791207
Target=Dev-VR
Merge conflict:
/src/ROBOMERGE_DEVVR_Dev_VR/Engine/Plugins/Lumin/MagicLeap/Source/MagicLeapController/Private/MagicLeapController.cpp - merging //UE4/Main/Engine/Plugins/Lumin/MagicLeap/Source/MagicLeapController/Private/MagicLeapController.cpp#5

#rb Ryan.Vance

[CL 4792243 by Joe Conley in Dev-VR branch]
2019-01-23 19:56:41 -05:00

32 lines
754 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "TestInterface.generated.h"
UINTERFACE()
class UTestInterface : public UInterface
{
GENERATED_BODY()
public:
UTestInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
};
class ITestInterface
{
GENERATED_BODY()
public:
UFUNCTION(BlueprintNativeEvent)
FString SomeFunction(int32 Val) const;
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
const float SomeFunctionWithConstReturnType() const;
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
UObject* SomeFunctionWithNonConstPointerReturnType() const;
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
const UObject* SomeFunctionWithConstPointerReturnType() const;
};