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
AboutForm.ui: About dialog for mines3d v2.
[mines3d.git]
/
exceptions
/
CAudioException.h
blob
cea4b9d61098313ebf34edd392dac99e1b0d9ee3
1
/*
2
* File: CAudioException.h
3
* Author: Jindrich Kovar
4
*/
5
6
#ifndef _CAUDIOEXCEPTION_H
7
#define _CAUDIOEXCEPTION_H
8
9
#include
"GeneralException.h"
10
#include <iostream>
11
using namespace
std
;
12
13
class
CAudioException
:
public
GeneralException
{
14
public
:
15
CAudioException
(
string desc
=
""
);
16
~
CAudioException
();
17
private
:
18
19
};
20
21
#endif
22