You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #ROBOMERGE-SOURCE: CL 17066037 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v852-17065384) [CL 17066041 by stefan boberg in ue5-release-engine-test branch]
37 lines
581 B
C++
37 lines
581 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Containers/StaticArray.h"
|
|
|
|
class FCompositeBuffer;
|
|
class FCbPackage;
|
|
|
|
#ifndef UE_WITH_ZEN
|
|
# if PLATFORM_WINDOWS
|
|
# define UE_WITH_ZEN 1
|
|
# else
|
|
# define UE_WITH_ZEN 0
|
|
# endif
|
|
#endif
|
|
|
|
#if UE_WITH_ZEN
|
|
|
|
namespace UE::Zen {
|
|
|
|
class FZenServiceInstance
|
|
{
|
|
public:
|
|
DERIVEDDATACACHE_API FZenServiceInstance();
|
|
DERIVEDDATACACHE_API ~FZenServiceInstance();
|
|
|
|
DERIVEDDATACACHE_API bool IsServiceRunning();
|
|
DERIVEDDATACACHE_API bool IsServiceReady();
|
|
|
|
private:
|
|
};
|
|
|
|
} // namespace UE::Zen
|
|
|
|
#endif // UE_WITH_ZEN
|