TDME2 1.9.121
AudioBufferManager.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
8
9using std::string;
10using std::unordered_map;
11
13
14/**
15 * Audio buffer manager
16 * @author Andreas Drewke
17 * @version $Id$
18 */
20{
22 friend class Audio;
23 friend class Sound;
24
25private:
26 unordered_map<string, AudioBufferManager_AudioBufferManaged*> audioBuffers;
27
28 /**
29 * Private constructor
30 */
32
33 /**
34 * Adds a audio buffer to manager / open al stack
35 * @param id id
36 * @return audio buffer managed
37 */
39
40 /**
41 * Removes a texture from manager / open gl stack
42 * @param id id
43 * @return true if caller has to remove the audio buffer from open AL
44 */
45 bool removeAudioBuffer(const string& id);
46
47};
bool removeAudioBuffer(const string &id)
Removes a texture from manager / open gl stack.
unordered_map< string, AudioBufferManager_AudioBufferManaged * > audioBuffers
AudioBufferManager()
Private constructor.
AudioBufferManager_AudioBufferManaged * addAudioBuffer(const string &id)
Adds a audio buffer to manager / open al stack.
Interface to audio module.
Definition: Audio.h:30
Sound audio entity implementation.
Definition: Sound.h:20