UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
DirectLinkStreamDestination.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6
7#include "CoreTypes.h"
9
10
11namespace DirectLink
12{
13class IConnectionRequestHandler;
14
17{
18public:
19 FStreamDestination(const FString& Name, EVisibility Visibility, const TSharedPtr<IConnectionRequestHandler>& Provider)
21 , Provider(Provider)
22 {}
23
24 const TSharedPtr<IConnectionRequestHandler>& GetProvider() const { return Provider; }
25
26private:
28};
29
30
31} // namespace DirectLink
Definition SharedPointer.h:692
Definition Visibility.h:12