Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RenderableListener.cpp
Go to the documentation of this file.
1 //
2 // C++ Implementation: Audio::RenderableListener
3 //
4 
5 #include "RenderableListener.h"
6 #include "config.h"
7 
8 namespace Audio {
9 
11  listener(_listener)
12  {
13  }
14 
16  {
17  // Just in case.
18  listener = 0;
19  }
20 
21  void RenderableListener::update(int flags)
22  throw()
23  {
24  try {
25  updateImpl(flags);
26  } catch(Exception e) {}
27  }
28 
29 };