SettingsForm: Sound and music buttons added to dialog.
[mines3d.git] / exceptions / CAudioException.h
blobcea4b9d61098313ebf34edd392dac99e1b0d9ee3
1 /*
2 * File: CAudioException.h
3 * Author: Jindrich Kovar
4 */
6 #ifndef _CAUDIOEXCEPTION_H
7 #define _CAUDIOEXCEPTION_H
9 #include "GeneralException.h"
10 #include <iostream>
11 using namespace std;
13 class CAudioException : public GeneralException {
14 public:
15 CAudioException(string desc = "");
16 ~CAudioException();
17 private:
21 #endif