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