2016-01-07 08:17:16 -05:00
|
|
|
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
/*=============================================================================
|
|
|
|
|
ScreenShotComparisonModule.cpp: Implements the FScreenShotComparisonModule class.
|
|
|
|
|
=============================================================================*/
|
|
|
|
|
|
|
|
|
|
#include "ScreenShotComparisonPrivatePCH.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static const FName ScreenShotComparisonName("ScreenShotComparison");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implements the ScreenShotComparison module.
|
|
|
|
|
*/
|
|
|
|
|
class FScreenShotComparisonModule
|
|
|
|
|
: public IScreenShotComparisonModule
|
|
|
|
|
{
|
|
|
|
|
public:
|
2014-06-13 06:14:46 -04:00
|
|
|
virtual TSharedRef<class SWidget> CreateScreenShotComparison( const IScreenShotManagerRef& ScreenShotManager ) override
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
|
|
|
|
return SNew(SScreenShotBrowser, ScreenShotManager);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_MODULE(FScreenShotComparisonModule, ScreenShotComparison);
|