Stream Chat Unreal SDK
Loading...
Searching...
No Matches
NewChatChannelStatusWidget.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "ChannelStatusWidget.h"
6#include "CoreMinimal.h"
7
8#include "NewChatChannelStatusWidget.generated.h"
9
13UCLASS()
14class STREAMCHATUI_API UNewChatChannelStatusWidget final : public UChannelStatusWidget
15{
16 GENERATED_BODY()
17
18private:
19 virtual bool IsForChannel(const UChatChannel*) const override;
20};
The client-side representation of a Stream Chat channel.
Definition: ChatChannel.h:74