Files
UnrealEngineUWP/Engine/Source/Developer/GeometryProcessingInterfaces/Private/GeometryProcessingInterfacesModule.h

39 lines
1.1 KiB
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "IGeometryProcessingInterfacesModule.h"
class IGeometryProcessing_ApproximateActors;
class IGeometryProcessing_UVEditorAssetEditor;
/**
* Implementation of IGeometryProcessingInterfacesModule (which extends the standard IModuleInterface)
* to provide access to various "Operation" interfaces
*/
class FGeometryProcessingInterfacesModule : public IGeometryProcessingInterfacesModule
{
public:
virtual void StartupModule() override;
virtual void ShutdownModule() override;
/**
* @return implementation of IGeometryProcessing_ApproximateActors, if available, or nullptr (result is cached internally)
*/
virtual IGeometryProcessing_ApproximateActors* GetApproximateActorsImplementation() override;
/**
* @return implementation of IGeometryProcessing_UVEditor, if available, or nullptr (result is cached internally)
*/
virtual IGeometryProcessing_UVEditorAssetEditor* GetUVEditorAssetEditorImplementation() override;
private:
IGeometryProcessing_ApproximateActors* ApproximateActors = nullptr;
IGeometryProcessing_UVEditorAssetEditor* UVEditorAssetEditor = nullptr;
};