Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Public/Interfaces/IAudioFormatModule.h
Max Preussner 18c542ddff TargetPlatform: Documentation and formatting clean up pass
[CL 2095419 by Max Preussner in Main branch]
2014-06-05 01:23:47 -04:00

30 lines
572 B
C++

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