Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/audio/src/audio/AudioSource.h @ 377

Last change on this file since 377 was 377, checked in by nicolape, 16 years ago

Added tardis alut dir and changed cmake to load all audio stuff from system libs

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.