]> git.localhorst.tv Git - blank.git/blob - src/audio/ALError.hpp
new gcc version
[blank.git] / src / audio / ALError.hpp
1 #ifndef BLANK_AUDIO_ALERROR_HPP_
2 #define BLANK_AUDIO_ALERROR_HPP_
3
4 #include <al.h>
5 #include <stdexcept>
6 #include <string>
7
8
9 namespace blank {
10
11 class ALError
12 : public std::runtime_error {
13
14 public:
15         explicit ALError(ALenum);
16         ALError(ALenum, const std::string &);
17
18 };
19
20 }
21
22 #endif