29 lines
548 B
C++
29 lines
548 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "IDeviceProfileServicesUIManager.h"
|
|
|
|
/**
|
|
* Device Profile Editor module
|
|
*/
|
|
class IDeviceProfileServicesModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Gets the profile services manager.
|
|
*
|
|
* @return The profile services manager.
|
|
*/
|
|
virtual IDeviceProfileServicesUIManagerRef GetProfileServicesManager( ) = 0;
|
|
|
|
public:
|
|
|
|
/** Virtual destructor. */
|
|
virtual ~IDeviceProfileServicesModule( ) { }
|
|
};
|