Files
UnrealEngineUWP/Engine/Source/Developer/ImageWrapper/Public/Interfaces/IImageWrapperModule.h
2014-03-14 14:13:41 -04:00

35 lines
764 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
IImageWrapperModule.h: Declares the IImageWrapperModule interface.
=============================================================================*/
#pragma once
/**
* Interface for image wrapper modules.
*/
class IImageWrapperModule
: public IModuleInterface
{
public:
/**
* Create a helper of a specific type
*
* @param InFormat - The type of image we want to deal with
*
* @return The helper base class to manage the data
*/
virtual IImageWrapperPtr CreateImageWrapper( const EImageFormat::Type InFormat ) = 0;
public:
/**
* Virtual destructor.
*/
virtual ~IImageWrapperModule( ) { }
};