#include <ExCSound.h>
Graphe d'héritage de la classe ExCSound
Membres publics | |
ExCSound (void) | |
ExCSound (char *FileName) | |
~ExCSound (void) | |
void | SetIdent (ALuint ident) |
ALuint | GetIdent (void) |
bool | Load (const char *FileName) |
void | Play (void) |
void | Stop (void) |
bool | InitCom (void) |
Attributs Privés | |
ALuint | m_ident |
|
Définition à la ligne 27 du fichier ExCSound.cpp. Références ExCSound(), Guard, ExCObject::SetName(), et ExCObject::SetType(). Référencé par ExCSound(), et ~ExCSound().
00028 { 00029 Guard(ExCSound::ExCSound(void)) 00030 SetName("ExCSound"); 00031 SetType(typeid(this).name()); 00032 UnGuard 00033 } |
|
Définition à la ligne 35 du fichier ExCSound.cpp. Références ExCSound(), et Guard.
00036 { 00037 Guard(ExCSound::ExCSound(char *FileName)) 00038 UnGuard 00039 } |
|
Définition à la ligne 41 du fichier ExCSound.cpp. Références ExCSound(), et Guard.
|
|
Définition à la ligne 50 du fichier ExCSound.h. Références m_ident.
00050 {m_ident=ident;} |
|
Définition à la ligne 47 du fichier ExCSound.cpp. Références Guard, et InitCom(). Référencé par InitCom().
00048 { 00049 Guard(ExCSound::InitCom(void)) 00050 return true; 00051 UnGuard 00052 } |
|
Définition à la ligne 54 du fichier ExCSound.cpp. Référencé par Load().
00055 { 00056 Guard(bool ExCSound::Load(const char * FileName)) 00057 return true; 00058 UnGuard 00059 } |
|
Définition à la ligne 61 du fichier ExCSound.cpp. Référencé par Play().
00062 { 00063 Guard(ExCSound::Play(void)) 00064 UnGuard 00065 } |
|
Définition à la ligne 49 du fichier ExCSound.h. Référencé par ExManagerSound::LoadSound().
00050 {m_ident=ident;} |
|
Définition à la ligne 67 du fichier ExCSound.cpp. Référencé par Stop().
00068 { 00069 Guard(ExCSound::Stop(void)) 00070 UnGuard 00071 } |
|
Définition à la ligne 38 du fichier ExCSound.h. Référencé par GetIdent(). |