Files
UnrealEngineUWP/Engine/Source/Developer/ModuleUI/Private/ModuleUI.cpp
Ben Marsh 20bf0eb6a1 Updating copyright notices to 2017 (copying from //Tasks/UE4/Dev-Copyright-2017).
#rb none
#lockdown Nick.Penwarden

[CL 3226823 by Ben Marsh in Main branch]
2016-12-08 08:52:44 -05:00

50 lines
805 B
C++

// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
#include "Widgets/SWidget.h"
#include "ModuleUIInterface.h"
#include "SModuleUI.h"
/**
* Implementation of the ModuleUI system
*/
class FModuleUI
: public IModuleUIInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
/** IModuleUIInterface implementation */
virtual TSharedRef< SWidget > GetModuleUIWidget() override;
private:
};
IMPLEMENT_MODULE( FModuleUI, ModuleUI );
void FModuleUI::StartupModule()
{
}
void FModuleUI::ShutdownModule()
{
}
TSharedRef< SWidget > FModuleUI::GetModuleUIWidget()
{
return SNew( SModuleUI );
}