2013-05-18 17:44:15 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* AudioCategory.h *
|
|
|
|
* *
|
2013-07-12 21:30:13 +02:00
|
|
|
* XFX XFX::Audio::AudioCategory definition file *
|
2013-05-18 17:44:15 +02:00
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
|
|
|
*****************************************************************************/
|
2013-05-05 18:18:41 +02:00
|
|
|
#ifndef XFX_AUDIO_AUDIOCATEGORY_H
|
|
|
|
#define XFX_AUDIO_AUDIOCATEGORY_H
|
|
|
|
|
|
|
|
#include <System/String.h>
|
|
|
|
|
2013-05-18 17:44:15 +02:00
|
|
|
using namespace System;
|
|
|
|
|
2013-05-05 18:18:41 +02:00
|
|
|
namespace XFX
|
|
|
|
{
|
|
|
|
namespace Audio
|
|
|
|
{
|
|
|
|
struct AudioCategory : Object
|
|
|
|
{
|
|
|
|
String Name;
|
|
|
|
|
2013-07-12 21:30:13 +02:00
|
|
|
static const Type& GetType();
|
2013-05-05 18:18:41 +02:00
|
|
|
void Pause();
|
|
|
|
void Resume();
|
|
|
|
void SetVolume(float volume);
|
|
|
|
void Stop();
|
2013-05-18 17:44:15 +02:00
|
|
|
|
|
|
|
bool operator!=(const AudioCategory& other) const;
|
|
|
|
bool operator==(const AudioCategory& other) const;
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-18 17:44:15 +02:00
|
|
|
#endif // XFX_AUDIO_AUDIOCATEGORY_H
|