Files
UnrealEngineUWP/Engine/Source/Developer/DeviceManager/Public/IDeviceManagerModule.h
Lina Halper f7baa58bc9 Merging //UE4/Dev-Main to Dev-Anim (//UE4/Dev-Anim)
#fyi: Laurent.Delayen, James.Hopkin
#rb: none

[CL 4923303 by Lina Halper in Dev-Anim branch]
2019-02-06 14:35:56 -05:00

35 lines
842 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
#include "Templates/SharedPointer.h"
class ITargetDeviceServiceManager;
class IDeviceManagerCustomPlatformWidgetCreator;
class SDockTab;
class SWidget;
class SWindow;
/**
* Interface for device manager modules.
*/
class IDeviceManagerModule
: public IModuleInterface
{
public:
/**
* Create a device manager widget.
*
* @param DeviceServiceManager The target device manager to use.
* @return The new widget.
*/
virtual TSharedRef<SWidget> CreateDeviceManager(const TSharedRef<ITargetDeviceServiceManager>& DeviceServiceManager, const TSharedRef<SDockTab>& ConstructUnderMajorTab, const TSharedPtr<SWindow>& ConstructUnderWindow) = 0;
public:
/** Virtual destructor. */
virtual ~IDeviceManagerModule() { }
};