22 lines
439 B
C++
22 lines
439 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Templates/SharedPointer.h"
|
|
|
|
namespace UE::Zen::Build { class FBuildServiceInstance; }
|
|
|
|
namespace UE::Zen::Build
|
|
{
|
|
|
|
class STORAGESERVERWIDGETS_API FServiceInstanceManager
|
|
{
|
|
public:
|
|
TSharedPtr<FBuildServiceInstance> GetBuildServiceInstance() const;
|
|
private:
|
|
mutable TSharedPtr<FBuildServiceInstance> CurrentInstance;
|
|
};
|
|
|
|
} // namespace UE::StorageService::Build
|
|
|