Files
UnrealEngine/Engine/Source/Developer/SourceControl/Public/SourceControlProviders.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

32 lines
725 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
namespace SourceControlProviders
{
/** Returns the default SourceControl provider name, which is the one indicating 'disabled'. */
static const TCHAR* GetDefaultProviderName()
{
return TEXT("None");
}
/** Returns the URC SourceControl provider name */
static const TCHAR* GetUrcProviderName()
{
return TEXT("Unreal Revision Control");
}
/** Returns the old Skein SourceControl provider name */
static const TCHAR* GetLegacySkeinProviderName()
{
return TEXT("Skein");
}
/** Returns the Perforce SourceControl provider name */
static const TCHAR* GetPerforceProviderName()
{
return TEXT("Perforce");
}
}