repo.or.cz
/
mines3d.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
First version of presentation added. I will add some screens of application soon.
[mines3d.git]
/
exceptions
/
CAudioException.cpp
blob
c7b938036e5b91083cebba8e2fa066253c264e1f
1
/*
2
* File: CAudioException.cpp
3
* Author: Jindrich Kovar
4
*/
5
6
#include
"CAudioException.h"
7
8
CAudioException
::
CAudioException
(
string desc
) :
GeneralException
(
ERR_AUDIO
,
desc
) {
9
}
10
11
CAudioException
::~
CAudioException
() {
12
}
13