You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 6306736ac85b7fef22be7751 [CL 21558583 by bryan sefcik in ue5-main branch]
47 lines
971 B
C++
47 lines
971 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "DefaultRemoteExecutor.h"
|
|
|
|
#include "Internationalization/Internationalization.h"
|
|
|
|
namespace UE::RemoteExecution { class IContentAddressableStorage; }
|
|
namespace UE::RemoteExecution { class IExecution; }
|
|
|
|
#define LOCTEXT_NAMESPACE "DefaultRemoteExecutor"
|
|
|
|
|
|
namespace UE::RemoteExecution
|
|
{
|
|
FName FDefaultRemoteExecutor::GetFName() const
|
|
{
|
|
return FName("None");
|
|
}
|
|
|
|
FText FDefaultRemoteExecutor::GetNameText() const
|
|
{
|
|
return LOCTEXT("DefaultDisplayName", "None");
|
|
}
|
|
|
|
FText FDefaultRemoteExecutor::GetDescriptionText() const
|
|
{
|
|
return LOCTEXT("DefaultDisplayDesc", "Disable remote execution.");
|
|
}
|
|
|
|
bool FDefaultRemoteExecutor::CanRemoteExecute() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
IContentAddressableStorage* FDefaultRemoteExecutor::GetContentAddressableStorage() const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
IExecution* FDefaultRemoteExecutor::GetExecution() const
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|