2014-03-14 14:13:41 -04:00
|
|
|
// 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.
|
|
|
|
|
*/
|
2014-06-05 01:23:47 -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-06-05 01:23:47 -04:00
|
|
|
/**
|
|
|
|
|
* Virtual destructor.
|
|
|
|
|
*/
|
|
|
|
|
~ITargetPlatformModule( ) { }
|
2014-03-14 14:13:41 -04:00
|
|
|
};
|