21 lines
500 B
C
21 lines
500 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
#include "ColumnWrappingContainer.h"
|
|
|
|
/**
|
|
* Provides templates for
|
|
*/
|
|
struct FColumnWrappingContainerTemplates
|
|
{
|
|
/**
|
|
* Gets the singleton instance of FColumnWrappingContainerTemplates
|
|
*/
|
|
static FColumnWrappingContainerTemplates& Get();
|
|
|
|
/**
|
|
* Creates a TSharedRef<FColumnWrappingContainer> that will create columns on a best fit for size basis
|
|
*/
|
|
TSharedRef<FColumnWrappingContainer> GetBestFitColumnsWithSmallCells();
|
|
};
|