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