2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2014-10-27 07:53:18 -04:00
|
|
|
#include "ModuleInterface.h"
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface for target platform modules.
|
|
|
|
|
*/
|
|
|
|
|
class ITargetPlatformModule
|
|
|
|
|
: public IModuleInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
/**
|
2014-10-27 07:53:18 -04:00
|
|
|
* Gets the module's target platform.
|
|
|
|
|
*
|
|
|
|
|
* @return The target platform.
|
2014-03-14 14:13:41 -04:00
|
|
|
*/
|
2014-10-10 20:59:10 -04:00
|
|
|
virtual ITargetPlatform* GetTargetPlatform() = 0;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2014-06-05 01:23:47 -04:00
|
|
|
public:
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2014-09-21 20:35:48 -04:00
|
|
|
/** Virtual destructor. */
|
2014-10-27 07:53:18 -04:00
|
|
|
virtual ~ITargetPlatformModule() { }
|
2014-03-14 14:13:41 -04:00
|
|
|
};
|