You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @ 17030256 and Dev-PerfTest @ 17030553 [CL 17031509 by aurel cordonnier in ue5-release-engine-test branch]
38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "IDisplayClusterConfiguration.h"
|
|
|
|
class UDisplayClusterConfigurationData;
|
|
|
|
|
|
/**
|
|
* Display Cluster configuration module
|
|
*/
|
|
class FDisplayClusterConfigurationModule :
|
|
public IDisplayClusterConfiguration
|
|
{
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
// IModuleInterface
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
virtual void StartupModule() override;
|
|
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
// IDisplayClusterConfiguration
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void SetIsSnapshotTransacting(bool bIsSnapshot) override;
|
|
virtual bool IsTransactingSnapshot() const override;
|
|
virtual EDisplayClusterConfigurationVersion GetConfigVersion(const FString& FilePath) override;
|
|
virtual UDisplayClusterConfigurationData* LoadConfig(const FString& FilePath, UObject* Owner = nullptr) override;
|
|
virtual bool SaveConfig(const UDisplayClusterConfigurationData* Config, const FString& FilePath) override;
|
|
virtual bool ConfigAsString(const UDisplayClusterConfigurationData* Config, FString& OutString) const override;
|
|
|
|
private:
|
|
/** Snapshot state */
|
|
bool bIsSnapshot = false;
|
|
};
|