2021-05-13 11:11:54 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
#include "DefaultRemoteExecutor.h"
|
|
|
|
|
|
|
|
|
|
#define LOCTEXT_NAMESPACE "DefaultRemoteExecutor"
|
|
|
|
|
|
|
|
|
|
|
2021-09-17 11:17:27 -04:00
|
|
|
namespace UE::RemoteExecution
|
2021-05-13 11:11:54 -04:00
|
|
|
{
|
2021-09-17 11:17:27 -04:00
|
|
|
FName FDefaultRemoteExecutor::GetFName() const
|
|
|
|
|
{
|
|
|
|
|
return FName("None");
|
|
|
|
|
}
|
2021-05-13 11:11:54 -04:00
|
|
|
|
2021-09-17 11:17:27 -04:00
|
|
|
FText FDefaultRemoteExecutor::GetNameText() const
|
|
|
|
|
{
|
|
|
|
|
return LOCTEXT("DefaultDisplayName", "None");
|
|
|
|
|
}
|
2021-05-13 11:11:54 -04:00
|
|
|
|
2021-09-17 11:17:27 -04:00
|
|
|
FText FDefaultRemoteExecutor::GetDescriptionText() const
|
|
|
|
|
{
|
|
|
|
|
return LOCTEXT("DefaultDisplayDesc", "Disable remote execution.");
|
|
|
|
|
}
|
2021-05-13 11:11:54 -04:00
|
|
|
|
2021-09-17 11:17:27 -04:00
|
|
|
bool FDefaultRemoteExecutor::CanRemoteExecute() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-05-13 11:11:54 -04:00
|
|
|
|
2021-09-17 11:17:27 -04:00
|
|
|
IContentAddressableStorage* FDefaultRemoteExecutor::GetContentAddressableStorage() const
|
|
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IExecution* FDefaultRemoteExecutor::GetExecution() const
|
|
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2021-05-13 11:11:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#undef LOCTEXT_NAMESPACE
|