You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
39 lines
876 B
C++
39 lines
876 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
ITargetDeviceServicesModule.h: Declares the ITargetDeviceServicesModule interface.
|
|
=============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
|
|
/**
|
|
* Interface for target device services modules.
|
|
*/
|
|
class ITargetDeviceServicesModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Gets the target device proxy manager.
|
|
*
|
|
* @return The device proxy manager.
|
|
*/
|
|
virtual ITargetDeviceProxyManagerRef GetDeviceProxyManager( ) = 0;
|
|
|
|
/**
|
|
* Gets the target device service manager.
|
|
*
|
|
* @return The device service manager.
|
|
*/
|
|
virtual ITargetDeviceServiceManagerRef GetDeviceServiceManager( ) = 0;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Virtual destructor.
|
|
*/
|
|
virtual ~ITargetDeviceServicesModule( ) { }
|
|
};
|