Files
UnrealEngineUWP/Engine/Source/Developer/ProfilerMessages/Private/ProfilerMessagesModule.cpp
Max Preussner e524e270f1 Core: Re-adding UClass dummy removals from CL# 2305058; this should now work properly
#CodeReview: dmitriy.dyomin, robert.manuszewski

[CL 2307110 by Max Preussner in Main branch]
2014-09-23 13:29:47 -04:00

26 lines
452 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "ProfilerMessagesPrivatePCH.h"
/**
* Implements the ProfilerMessages module.
*/
class FProfilerMessagesModule
: public IModuleInterface
{
public:
virtual void StartupModule( ) override { }
virtual void ShutdownModule( ) override { }
virtual bool SupportsDynamicReloading( ) override
{
return true;
}
};
IMPLEMENT_MODULE(FProfilerMessagesModule, ProfilerMessages);