// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "Templates/SharedPointer.h" #include "Widgets/DeclarativeSyntaxSupport.h" #include "Widgets/SCompoundWidget.h" class SWidget; class SPersonaDetails : public SCompoundWidget { public: SLATE_BEGIN_ARGS(SPersonaDetails) {} /** Optional content to display above the details panel */ SLATE_ARGUMENT(TSharedPtr, TopContent) /** Optional content to display below the details panel */ SLATE_ARGUMENT(TSharedPtr, BottomContent) SLATE_END_ARGS() void Construct(const FArguments& InArgs); TSharedPtr DetailsView; };