Files
UnrealEngineUWP/Engine/Source/Developer/TreeMap/TreeMapModule.cpp
Dmitry Rekman a9221dfcb5 Matching LOCTEXT_NAMESPACE #def/#undef
- Also changed some #undef's to be more uniform

[CL 2665419 by Dmitry Rekman in Main branch]
2015-08-23 00:57:30 -04:00

28 lines
448 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "TreeMapModule.h"
#include "TreeMapStyle.h"
/**
* Implements the TreeMap module.
*/
class FTreeMapModule
: public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule() override
{
FTreeMapStyle::Initialize();
}
virtual void ShutdownModule() override
{
FTreeMapStyle::Shutdown();
}
};
IMPLEMENT_MODULE(FTreeMapModule, TreeMap);