Files
UnrealEngineUWP/Engine/Source/Runtime/AutomationMessages/Private/AutomationMessagesModule.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
462 B
C++

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