Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Added AudioManager, AudioBuffer and AudioSource Class definitions

File size: 335 bytes
Line 
1#ifndef AUDIOSOURCE_H_
2#define AUDIOSOURCE_H_
3
4#include <iostream>
5#include <string>
6#include <vector>
7
8#include "../../include/AL/al.h"
9#include "../../include/AL/alc.h"
10#include "../../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.