Files
UnrealEngine/Engine/Source/Editor/DeviceProfileServices/Public/IDeviceProfileServicesModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

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( ) { }
};