Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/audio/src/audio/_Ambient.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: 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
11namespace 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.