Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/audio/AudioSource.h @ 389

Last change on this file since 389 was 389, checked in by nicolasc, 16 years ago

merged audio into FICN

File size: 293 bytes
Line 
1#ifndef AUDIOSOURCE_H_
2#define AUDIOSOURCE_H_
3
4#include <iostream>
5#include <string>
6#include <vector>
7
8#include <AL/al.h>
9#include <AL/alc.h>
10#include <AL/alut.h>
11
12namespace audio
13{
14        class AudioSource
15        {
16        public:
17                AudioSource();
18                ~AudioSource();
19        private:
20
21        };
22}
23
24#endif /*AUDIOSOURCE_H_*/
Note: See TracBrowser for help on using the repository browser.