source:
code/branches/FICN/src/audio/_Ambient.h
@
399
Last change on this file since 399 was 389, checked in by nicolasc, 17 years ago | |
---|---|
File size: 356 bytes |
Rev | Line | |
---|---|---|
[327] | 1 | #ifndef __CLASS_AMBIENT_H__ |
2 | #define __CLASS_AMBIENT_H__ | |
3 | ||
4 | #include <iostream> | |
[330] | 5 | #include "../../include/AL/al.h" |
6 | #include "../../include/AL/alc.h" | |
7 | #include "../../include/AL/alut.h" | |
[327] | 8 | |
[338] | 9 | #include "AudioObject.h" |
[327] | 10 | |
11 | namespace audio | |
12 | { | |
13 | class Ambient | |
14 | { | |
15 | public: | |
[338] | 16 | Ambient(std::string audioFile); |
17 | ~Ambient(); | |
[334] | 18 | void play(); |
[327] | 19 | private: |
[338] | 20 | AudioObject* a; |
[327] | 21 | }; |
22 | } | |
23 | ||
24 | #endif |
Note: See TracBrowser
for help on using the repository browser.