Files
UnrealEngineUWP/Engine/Source/Developer/ImageWrapper/Private/IcnsImageWrapper.h
Ben Marsh 9386111b33 Missing header.
[CL 2481828 by Ben Marsh in Main branch]
2015-03-17 13:42:53 -04:00

28 lines
695 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
/**
* ICNS implementation of the helper class
*/
class FIcnsImageWrapper
: public FImageWrapperBase
{
public:
/**
* Default Constructor.
*/
FIcnsImageWrapper();
public:
// FImageWrapper Interface
virtual bool SetCompressed( const void* InCompressedData, int32 InCompressedSize ) override;
virtual bool SetRaw( const void* InRawData, int32 InRawSize, const int32 InWidth, const int32 InHeight, const ERGBFormat::Type InFormat, const int32 InBitDepth ) override;
virtual void Compress( int32 Quality ) override;
virtual void Uncompress( const ERGBFormat::Type InFormat, int32 InBitDepth ) override;
};