UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
StropheContext.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#if WITH_XMPP_STROPHE
6
7typedef struct _xmpp_ctx_t xmpp_ctx_t;
8
10{
11public:
12 explicit FStropheContext();
14
15 // Do not allow copies/assigns
16 FStropheContext(const FStropheContext& Other) = delete;
18 FStropheContext& operator=(const FStropheContext& Other) = delete;
19 FStropheContext& operator=(FStropheContext&& Other) = delete;
20
21 xmpp_ctx_t* GetContextPtr() const { return XmppContextPtr; }
22
23private:
25};
26
27#endif
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127