Files
UnrealEngineUWP/Engine/Source/Developer/DeviceManager/Public/IDeviceManagerModule.h
Chris Gagnon a48e767b94 Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 4835066 by Chris Gagnon in Dev-Editor branch]
2019-01-29 16:15:19 -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() { }
};