Files
UnrealEngineUWP/Engine/Source/Programs/ZenDashboard/Private/ServiceInstanceManager.h
Zousar Shaker 47d2def788 Zen dashboard feature additions for:
- Service status & controls
- Version information
- GC status & control

Depends on https://p4-swarm.epicgames.net/reviews/23337377

#rb matt.peters
#preflight 638fa4a167018b14b5be45b5

[CL 23415939 by Zousar Shaker in ue5-main branch]
2022-12-06 15:38:54 -05:00

23 lines
407 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
namespace UE::Zen { class FZenServiceInstance; }
namespace UE::Zen
{
class FServiceInstanceManager
{
public:
TSharedPtr<FZenServiceInstance> GetZenServiceInstance() const;
private:
mutable uint16 CurrentPort = 0;
mutable TSharedPtr<FZenServiceInstance> CurrentInstance;
};
} // namespace UE::Zen