Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Public/Interfaces/ITargetPlatformModule.h
Max Preussner 18c542ddff TargetPlatform: Documentation and formatting clean up pass
[CL 2095419 by Max Preussner in Main branch]
2014-06-05 01:23:47 -04:00

30 lines
612 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
ITargetPlatformModule.h: Declares the ITargetPlatformModule interface.
=============================================================================*/
#pragma once
/**
* Interface for target platform modules.
*/
class ITargetPlatformModule
: public IModuleInterface
{
public:
/**
* Gets the target platform for this module.
*/
virtual ITargetPlatform* GetTargetPlatform( ) = 0;
public:
/**
* Virtual destructor.
*/
~ITargetPlatformModule( ) { }
};