You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UES-7210 #rb benoit.chauvin #rn [Experimental] Publishing Submit Tool code [CL 36977217 by juan legaz in 5.5 branch]
19 lines
500 B
C++
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;
|
|
}; |