Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Public/Interfaces/IAudioFormatModule.h

26 lines
381 B
C
Raw Normal View History

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
/**
* Interface for audio format modules.
*/
class IAudioFormatModule
: public IModuleInterface
{
public:
/**
* Gets the audio format.
*
* @return The audio format interface.
*/
virtual IAudioFormat* GetAudioFormat() = 0;
public:
/** Virtual destructor. */
~IAudioFormatModule() { }
};