Files
juan legaz bb83ca4562 Moving Submit Tool to Source/Programs
#jira UES-7210
#rb benoit.chauvin
#rn [Experimental] Publishing Submit Tool code

[CL 36977217 by juan legaz in 5.5 branch]
2024-10-09 10:04:40 -04:00

19 lines
500 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class FConfiguration
{
public:
static void Init();
static FString Substitute(const FString& InStr);
static FString SubstituteAndNormalizeFilename(const FString& InStr);
static FString SubstituteAndNormalizeDirectory(const FString& InStr);
static void AddOrUpdateEntry(const FString& Key, const FString& NewValue);
private:
static TSharedPtr<FConfiguration> Instance;
TMap<FString, FString> Values;
};