1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
XFXFramework/include/Audio/AudioCategory.h
Tom Lint 66a012689c Changed Object::GetType to static
DependencyProperties can now (sort of) be registered
2013-07-11 17:25:49 +02:00

35 lines
801 B
C++

/*****************************************************************************
* AudioCategory.h *
* *
* XFX AudioCategory definition file *
* Copyright (c) XFX Team. All Rights Reserved *
*****************************************************************************/
#ifndef XFX_AUDIO_AUDIOCATEGORY_H
#define XFX_AUDIO_AUDIOCATEGORY_H
#include <System/String.h>
using namespace System;
namespace XFX
{
namespace Audio
{
struct AudioCategory : Object
{
String Name;
static int GetType();
void Pause();
void Resume();
void SetVolume(float volume);
void Stop();
bool operator!=(const AudioCategory& other) const;
bool operator==(const AudioCategory& other) const;
};
}
}
#endif // XFX_AUDIO_AUDIOCATEGORY_H