2016-01-07 08:17:16 -05:00
|
|
|
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
2014-04-23 16:36:54 -04:00
|
|
|
|
|
|
|
|
/*=============================================================================
|
|
|
|
|
IAndroidDeviceDetectionModule.h: Declares the IAndroidDeviceDetectionModule interface.
|
|
|
|
|
=============================================================================*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface for AndroidDeviceDetection module.
|
|
|
|
|
*/
|
|
|
|
|
class IAndroidDeviceDetectionModule
|
|
|
|
|
: public IModuleInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* Returns the android device detection singleton.
|
|
|
|
|
*/
|
|
|
|
|
virtual IAndroidDeviceDetection* GetAndroidDeviceDetection() = 0;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Virtual destructor
|
|
|
|
|
*/
|
|
|
|
|
virtual ~IAndroidDeviceDetectionModule( ) { }
|
|
|
|
|
};
|