Files
UnrealEngineUWP/Engine/Source/Developer/SuperSearch/Private/SuperSearchModule.cpp
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

27 lines
661 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "SuperSearchPrivatePCH.h"
#include "SSuperSearch.h"
IMPLEMENT_MODULE( FSuperSearchModule,SuperSearch );
namespace SuperSearchModule
{
static const FName FNameSuperSearchApp = FName(TEXT("SuperSearchApp"));
}
void FSuperSearchModule::StartupModule()
{
}
void FSuperSearchModule::ShutdownModule()
{
}
TSharedRef< SWidget > FSuperSearchModule::MakeSearchBox( TSharedPtr< SEditableTextBox >& OutExposedEditableTextBox ) const
{
TSharedRef< SSuperSearchBox > NewSearchBox = SNew( SSuperSearchBox );
OutExposedEditableTextBox = NewSearchBox->GetEditableTextBox();
return NewSearchBox;
}