2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface for device manager modules.
|
|
|
|
|
*/
|
|
|
|
|
class IDeviceManagerModule
|
|
|
|
|
: public IModuleInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a device manager widget.
|
|
|
|
|
*
|
2014-06-04 23:18:09 -04:00
|
|
|
* @param DeviceServiceManager The target device manager to use.
|
2014-03-14 14:13:41 -04:00
|
|
|
* @return The new widget.
|
|
|
|
|
*/
|
|
|
|
|
virtual TSharedRef<class SWidget> CreateDeviceManager( const ITargetDeviceServiceManagerRef& DeviceServiceManager, const TSharedRef<SDockTab>& ConstructUnderMajorTab, const TSharedPtr<SWindow>& ConstructUnderWindow ) = 0;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Virtual destructor.
|
|
|
|
|
*/
|
|
|
|
|
virtual ~IDeviceManagerModule( ) { }
|
|
|
|
|
};
|